        :root {
            --dark: #0e2b33;
            --accent: #e9cfc3;
            --muted: #f3f6f7;
            --card: #ffffff;
            --text: #0b2330;
            --primary: #083a4a;
            --radius: 14px;
            --shadow: 0 6px 24px rgba(6, 22, 28, 0.12);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: white;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

    

        /* Footer Styles */
        footer {
            margin-top: 60px;
            background: var(--dark);
            color: #fff;
            padding: 60px 18px 40px;
            position: relative;
            overflow: hidden;
        }

        /* Instagram Icon Positioning */
        .insta-container {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            box-shadow: var(--shadow);
            transition: var(--transition);
            z-index: 1000;
        }

        .insta-container:hover {
            transform: translateX(-50%) scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .insta-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            position: relative;
            z-index: 1000;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }

        .footer-col {
            min-width: 220px;
            flex: 1;
        }

        .footerh4Heading{
            margin: 0 0 15px;
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 600;
            color: #e9cfc3;
            position: relative;
            padding-bottom: 10px;
        }

        .footerh4Heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #e9cfc3;
        }

        .footer-col h5 {
            margin: 0 0 15px;
            font-size: 18px;
            font-weight: 600;
            color: white;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-col h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--accent);
        }

        .footer-col h2 {
            margin: 0 0 15px;
            font-size: 22px;
            font-weight: 600;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent);
        }

        .muted {
            color: #b0bec5;
            line-height: 1.6;
        }

        .footer-col p {
            margin-bottom: 12px;
            line-height: 1.6;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        ul li {
            margin-bottom: 10px;
            transition: var(--transition);
        }

        ul li:hover {
            transform: translateX(5px);
        }

        ul li a {
            color: #dfe9ea;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        ul li a::before {
            content: '›';
            color: var(--accent);
            font-weight: bold;
            transition: var(--transition);
        }

        ul li a:hover {
            color: var(--accent);
        }

        ul li a:hover::before {
            transform: translateX(3px);
        }

       
        /* Social Media Links */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
        }

        /* Footer Bottom */
        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #b0bec5;
            font-size: 14px;
        }

        /* Decorative Elements */
        .footer-decoration {
            position: absolute;
            opacity: 0.03;
            z-index: 1;
        }

        .decoration-1 {
            top: 20%;
            right: 10%;
            width: 150px;
            height: 150px;
            background: var(--accent);
            border-radius: 50%;
        }

        .decoration-2 {
            bottom: 10%;
            left: 5%;
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-inner {
                gap: 30px;
            }
            
            .footer-col {
                min-width: 180px;
            }
        }

        @media (max-width: 768px) {
            footer {
                padding: 50px 18px 30px;
            }
            
            .footer-inner {
                flex-direction: column;
                gap: 30px;
            }
            
            .insta-container {
                width: 60px;
                height: 60px;
                top: -25px;
            }
            
            .insta-icon {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
            
            .footerh4Heading{
                font-size: 22px;
            }
        }

        @media (max-width: 480px) {
            .footer-col {
                min-width: 100%;
            }
            
            .social-links {
                justify-content: center;
            }
        }
