 :root {
            --primary-bg: #f5e6d3;
            --secondary-bg: #ffffff;
            --accent-yellow: #f4d03f;
            --text-dark: #1a1a1a;
            --text-light: #666666;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg)!important;
            color: #2b2b2b;
            overflow-x: hidden;
        }
         h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 900;
        }

        /* Header Styles */
        header {
            background-color: var(--primary-bg)!important;
            padding: 25px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .logo {
            font-weight: 700;
            font-size: 22px;
            color: var(--text-dark);
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-size: 15px;
            font-weight: 500;
            margin-left: 30px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--accent-yellow);
        }

        .navbar-nav .nav-link.active {
            color: var(--accent-yellow);
        }

        /* Hero Section */
        .contact-hero {
            padding: 80px 0 60px;
            text-align: center;
        }

        .section-label {
            font-size: 12px;
            letter-spacing: 4px;
            color:var(--text-light);
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .hero-description {
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-light);
            max-width: 650px;
            margin: 0 auto 60px;
            font-weight: 400;
        }

        /* Contact Cards */
        .contact-cards {
            padding: 40px 0 80px;
        }

        .contact-card {
            background-color: #fff;
            padding: 45px 35px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            text-align: center;
            border: 2px solid transparent;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            border-color: var(--accent-yellow);
        }

        .contact-card-icon {
            font-size: 48px;
            margin-bottom: 25px;
            color: var(--text-dark);
        }

        .contact-card h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 18px;
            color: var(--text-dark);
        }

        .contact-card p {
            font-size: 15px;
            color: var(--text-light);
            margin-bottom: 30px;
            line-height: 1.7;
            font-weight: 400;
        }

        .btn-contact {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            padding: 14px 40px;
            background-color: var(--accent-yellow);
            border-radius: 8px;
            display: inline-block;
            transition: all 0.3s ease;
            font-size: 15px;
            border: none;
        }

        .btn-contact:hover {
            background-color: var(--accent-yellow);
            color: var(--text-dark);
            transform: scale(1.05);
        }

        .cta-section {
            background-color: #fff;
            padding: 70px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 38px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 16px;
            color:var(--text-light);
            margin-bottom: 10px;
        }

        .email-highlight {
            background-color: var(--accent-yellow);
            padding: 4px 12px;
            border-radius: 5px;
            font-weight: 600;
            color: var(--text-dark);
            display: inline-block;
            margin-top: 10px;
        }

        /* Footer */
        footer {
            background-color: var(--text-dark);
            color: #fff;
            padding: 60px 0 30px;
        }

        .footer-content {
            text-align: center;
        }

        .footer-logo {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 25px;
        }

        .footer-text {
            font-size: 15px;
            color: var(--text-light);
            margin-bottom: 35px;
            line-height: 1.8;
            max-width: 600px;
            margin-left: auto;
            margin-right:auto;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 18px;
            margin-bottom: 40px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            color: #2b2b2b;
            font-size: 20px;
        }

        .social-icon:hover {
            background-color: var(--accent-yellow);
            color: #2b2b2b;
            transform: scale(1.15) rotate(5deg);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 25px;
            margin-top: 30px;
            font-size: 13px;
            color: #777;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 42px;
            }

            .navbar-nav .nav-link {
                margin-left: 0;
                margin-top: 10px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }

            .cta-title {
                font-size: 30px;
            }

            .contact-card {
                margin-bottom: 20px;
            }

            .social-icons {
                gap: 12px;
            }

            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 30px;
            }

            .section-label {
                font-size: 10px;
                letter-spacing: 3px;
            }

            .hero-description {
                font-size: 15px;
            }

            .contact-card {
                padding: 35px 25px;
            }

            .contact-card-icon {
                font-size: 40px;
            }

            .contact-card h3 {
                font-size: 20px;
            }

            .cta-title {
                font-size: 26px;
            }
        }
        
