     /* Global Styles */
        :root {
            --shea-butter: #D67B5D;
            --olive-green: #4F6F52;
            --cocoa-brown: #6A4E42;
            --cream-ivory: #FAF4ED;
            --honey-gold: #E1C699;
            --pure-white: #FFFFFF;
            --light-shadow: rgba(0, 0, 0, 0.1);
            --medium-shadow: rgba(0, 0, 0, 0.15);
            --dark-shadow: rgba(0, 0, 0, 0.2);
            --almond-milk: #F8EFE4;
            --amber-brown: #B89F7A;
            --neutral-light: #F5F5F5;
            --neutral-medium: #E0E0E0;
            --neutral-dark: #9E9E9E;
        }
    
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'serif';
            color: var(--cocoa-brown);
            background-color: var(--cream-ivory);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: var(--shea-butter);
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--olive-green);
        }

    .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

    .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--shea-butter);
            color: var(--pure-white);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

    .btn-primary {
        background-color: var(--shea-butter);
        color: var(--pure-white);
        border: 2px solid var(--shea-butter);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(214, 123, 93, 0.3);
    }

    .btn-secondary {
        background-color: transparent;
        color: var(--shea-butter);
        border: 2px solid var(--shea-butter);
    }

    .btn-secondary:hover {
        background-color: var(--shea-butter);
        color: var(--pure-white);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(214, 123, 93, 0.3);
    }

    .btn:hover {
            background-color: #c06a4e;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px var(--light-shadow);
            color: var(--pure-white);
        }

    /* Button Glow Animation */
        .btn-glow {
            position: relative;
            z-index: 1;
        }
        
        .btn-glow:after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
            opacity: 0;
            transform: scale(0.5);
            z-index: -1;
            transition: transform 0.6s ease-out, opacity 0.6s ease-out;
        }
        
        .btn-glow:hover:after {
            opacity: 0.3;
            transform: scale(1);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                opacity: 0.3;
            }
            50% {
                opacity: 0.1;
            }
            100% {
                opacity: 0.3;
            }
        }

    section {
        padding: 80px 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }

    .section-title h2 {
        font-size: 2.5rem;
        display: inline-block;
        position: relative;
        z-index: 1;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--shea-butter);
    }

/* Header Styles */
    header {
        background-color: rgba(250, 244, 237, 0.95);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
        padding: 15px 0;
    }

    header.scrolled {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        background-color: rgba(250, 244, 237, 0.98);
        backdrop-filter: blur(10px);
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--shea-butter);
        text-decoration: none;
    }

    .logo span {
        color: var(--olive-green);
    }

    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        margin-left: 30px;
    }

    nav ul li a {
        color: var(--cocoa-brown);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--shea-butter);
        transition: width 0.3s ease;
    }

    nav ul li a:hover::after,
    nav ul li a.active::after {
        width: 100%;
    }

    nav ul li a:hover {
        color: var(--shea-butter);
    }

    .nav-icons {
        display: flex;
        align-items: center;
    }

    .nav-icons a {
        margin-left: 20px;
        color: var(--cocoa-brown);
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .nav-icons a:hover {
        color: var(--shea-butter);
    }

.hamburger{
    display: none;
    cursor: pointer;
}

.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--shea-butter);

} 
@media (max-width: 768px){
    nav ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--cream-ivory);
            flex-direction: column;
            padding: 20px 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        nav ul.active {
            display: flex;
        }

        nav ul li {
            margin: 10px 0;
            text-align: center;
        }
        
    .hamburger{
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    #menu{
        position: fixed;
        left: -100%;
        top: 76px;
        gap: 0;
        flex-direction: column;
        background-color: rgba(250, 244, 237, 0.95);
        opacity: 0.99;
        width: 50%;
        height: auto;
        text-align: center;
        transition: 0.3s;
        z-index: 4;
    }

    .nav-item{
        margin: 16px 0;
    }

    .nav-link{
        margin: 10px;
        padding-bottom: 10px;
    }

    #menu.active {
        left: 0;
    }
}

    /* Footer */
    footer {
        background-color: var(--cocoa-brown);
        color: var(--pure-white);
        padding: 60px 0 0;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-column h3 {
        color: var(--pure-white);
        font-size: 20px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-column h3:after {
        content: '';
        position: absolute;
        width: 40px;
        height: 2px;
        background-color: var(--honey-gold);
        bottom: 0;
        left: 0;
    }
    
    .footer-links {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: var(--honey-gold);
        transition: all 0.2s ease;
    }
    
    .footer-links a:hover {
        color: var(--pure-white);
    }
    
    .footer-contact p {
        margin-bottom: 10px;
        display: flex;
        align-items: flex-start;
    }
    
    .footer-contact i {
        margin-right: 10px;
        color: var(--honey-gold);
    }
    
    .footer-social {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--pure-white);
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        background-color: var(--shea-butter);
        transform: translateY(-3px);
    }
    
    .footer-bottom {
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom p {
        font-size: 14px;
    }
    
    .heart {
        color: var(--shea-butter);
        animation: heartbeat 1.5s infinite;
    }

    .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background-color: var(--shea-butter);
        color: var(--pure-white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .scroll-top.active {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        background-color: var(--olive-green);
        transform: translateY(-5px);
    }