
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: #1A1A1A;
            background-color: #FAFAFA;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.98);
            border-bottom: 1px solid #E5E5E5;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(20px);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 600;
            color: #2ECC71;
            text-decoration: none;
            letter-spacing: 0.02em;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 48px;
        }

        .nav-link {
            text-decoration: none;
            color: #666;
            font-weight: 400;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 14px;
        }

        .nav-link:hover {
            color: #2ECC71;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 1px;
            background: #2ECC71;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #2ECC71;
        }

        /* Hero Section */
        .hero {
            padding: 200px 0 120px;
            background: linear-gradient(135deg, #2ECC71 0%, #11b053 50%, #2ECC71 100%),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="luxury" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="1200" height="800" fill="url(%23luxury)"/></svg>');
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(139, 90, 43, 0.1) 0%, transparent 70%);
            animation: subtleGlow 8s ease-in-out infinite;
        }

        @keyframes subtleGlow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.7; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 64px;
            font-weight: 500;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #FFFFFF 0%, #E5E5E5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 20px;
            color: #CCCCCC;
            margin-bottom: 48px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        .btn {
            display: inline-block;
            padding: 18px 40px;
            background: transparent;
            color: #2ECC71;
            text-decoration: none;
            border: 2px solid #2ECC71;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #2ECC71;
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn:hover::before {
            left: 0;
        }

        .btn:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(139, 90, 43, 0.4);
        }

        /* Section Styles */
        .section {
            padding: 120px 0;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 500;
            text-align: center;
            margin-bottom: 16px;
            color: #1A1A1A;
        }

        .section-subtitle {
            font-size: 18px;
            text-align: center;
            color: #666;
            margin-bottom: 80px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        /* About Preview */
        .about-preview {
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 24px;
            color: #1A1A1A;
        }

        .about-text p {
            color: #666;
            margin-bottom: 24px;
            font-size: 16px;
        }

        .about-features {
            list-style: none;
        }

        .about-features li {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            color: #333;
            font-size: 15px;
        }

        .about-features li:before {
            content: '◆';
            color: #2ECC71;
            font-weight: bold;
            margin-right: 16px;
            font-size: 12px;
        }

        .luxury-stats {
            background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
            padding: 60px 40px;
            color: white;
            text-align: center;
            position: relative;
        }

        .luxury-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #2ECC71, transparent);
        }

        .stat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .stat-item {
            padding: 30px;
            border: 1px solid #333;
            background: rgba(255, 255, 255, 0.02);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 600;
            color: #2ECC71;
            display: block;
            margin-bottom: 8px;
        }

        .stat-label {
            color: #CCC;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 300;
        }

        /* Why Choose Us */
        .why-choose-us {
            background: #FAFAFA;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: white;
            padding: 50px 40px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid #E5E5E5;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #2ECC71, #FFCCBC, #2ECC71);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(26, 26, 26, 0.1);
            border-color: #2ECC71;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #2ECC71 0%, #FFCCBC 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            font-size: 32px;
        }

        .feature-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 16px;
            color: #1A1A1A;
        }

        .feature-card p {
            color: #666;
            font-size: 15px;
        }

        /* Services */
        .services {
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
        }

        .service-category {
            background: #FAFAFA;
            padding: 40px;
            border: 1px solid #E5E5E5;
            transition: all 0.4s ease;
            position: relative;
        }

        .service-category:hover {
            border-color: #2ECC71;
            box-shadow: 0 15px 35px rgba(26, 26, 26, 0.08);
        }

        .service-category h3 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 30px;
            color: #1A1A1A;
            display: flex;
            align-items: center;
        }

        .service-category h3:before {
            content: '♦';
            margin-right: 12px;
            font-size: 18px;
            color: #2ECC71;
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            padding: 12px 0;
            color: #333;
            border-bottom: 1px solid #E5E5E5;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list li:hover {
            color: #2ECC71;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
            color: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.02);
            padding: 50px 40px;
            border: 1px solid #333;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 80px;
            color: #2ECC71;
            font-family: 'Playfair Display', serif;
            line-height: 1;
            opacity: 0.3;
        }

        .testimonial-text {
            font-style: italic;
            color: #E5E5E5;
            margin-bottom: 30px;
            font-size: 16px;
            line-height: 1.7;
            margin-top: 30px;
        }

        .testimonial-author {
            font-weight: 600;
            color: white;
            font-size: 16px;
        }

        .testimonial-role {
            color: #999;
            font-size: 14px;
            margin-top: 4px;
        }

        /* FAQ */
        .faq {
            background: #FAFAFA;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 24px;
            border: 1px solid #E5E5E5;
            overflow: hidden;
        }

        .faq-question {
            background: none;
            border: none;
            padding: 30px;
            width: 100%;
            text-align: left;
            font-size: 18px;
            font-weight: 500;
            color: #1A1A1A;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Playfair Display', serif;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(139, 90, 43, 0.02);
        }

        .faq-answer {
            padding: 0 30px 30px;
            color: #666;
            display: none;
            font-size: 16px;
            line-height: 1.7;
        }

        .faq-answer.active {
            display: block;
        }

        /* Contact Form */
        .contact {
            background: white;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: #FAFAFA;
            padding: 60px 50px;
            border: 1px solid #E5E5E5;
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1A1A1A;
            font-size: 15px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            background: white;
            border: 1px solid #E5E5E5;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2ECC71;
            box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
        }

        /* Footer */
        .footer {
            background: #1A1A1A;
            color: #CCC;
            padding: 80px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-section h4 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 24px;
            color: #2ECC71;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 15px;
        }

        .footer-section ul li a:hover {
            color: #2ECC71;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 40px;
            text-align: center;
            color: #666;
            font-size: 14px;
        }

        /* Popup Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(26, 26, 26, 0.9);
            z-index: 2000;
            backdrop-filter: blur(10px);
        }

        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 60px 50px;
            max-width: 700px;
            max-height: 80vh;
            overflow-y: auto;
            display: none;
            z-index: 2001;
            border: 1px solid #E5E5E5;
        }

        .popup h3 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 24px;
            color: #1A1A1A;
        }

        .popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 48px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .features-grid,
            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 36px;
            }

            .contact-form {
                margin: 0 20px;
                padding: 40px 30px;
            }

            .stat-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Confirmation Messages */
        .confirmation {
            background: linear-gradient(135deg, #2ECC71, #FFCCBC);
            color: white;
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 24px;
            display: none;
            font-weight: 500;
            text-align: center;
        }

        .confirmation.error {
            background: linear-gradient(135deg, #DC2626, #EF4444);
        }

        /* Luxury Accents */
        .luxury-divider {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #2ECC71, #FFCCBC, #2ECC71);
            margin: 20px auto;
        }
    