
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #00a0ae;
            --bg-primary: #d2f6f9;
            --bg-secondary: #FFFFFF;
            --text-primary: #023b40;
            --text-secondary: #024348;
            --success: #5A775E;
            --error: #9F5A5A;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-primary);
        }

        h1, h2, h3 {
            font-family: 'Cormorant Garamond', serif;
            line-height: 1.2;
        }

        h1 {
            font-size: 72px;
            font-weight: 600;
        }

        h2 {
            font-size: 44px;
            font-weight: 600;
        }

        h3 {
            font-size: 27px;
            font-weight: 700;
        }

        p {
            font-size: 18px;
            font-weight: 400;
        }

        .container {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(248, 246, 242, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 16px 0;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 48px;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(49, 47, 44, 0.8), rgba(49, 47, 44, 0.8)), 
                        url('../images/hero.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
            margin-bottom: 32px;
        }

        .hero-content p {
            font-size: 24px;
            margin-bottom: 48px;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 32px;
            height: 56px;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn:hover {
            background: #8a7d61;
            transform: translateY(-2px);
        }

        /* Sections */
        .section {
            padding: 128px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 96px;
        }

        .section-header p {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 24px auto 0;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 48px;
        }

        .service-card {
            background: var(--bg-secondary);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .service-card:hover {
            border: 1px solid var(--primary-color);
        }

        .service-card:hover .service-image {
            transform: scale(1.05);
        }

        .service-image {
            height: 250px;
            background: linear-gradient(135deg, #D4C5A0, #B8A085);
            transition: transform 0.4s ease;
        }

        .service-content {
            padding: 32px;
        }

        .service-content h3 {
            margin-bottom: 16px;
        }

        .service-content p {
            color: var(--text-secondary);
        }

        /* Why Choose Us */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
        }

        .why-us-item {
            text-align: center;
            padding: 48px 24px;
        }

        .why-us-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            margin: 0 auto 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
        }

        .why-us-item h3 {
            margin-bottom: 16px;
        }

        .why-us-item p {
            color: var(--text-secondary);
        }

        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 24px;
            border-bottom: 1px solid #E5E7EB;
        }

        .faq-question {
            width: 100%;
            padding: 32px 0;
            text-align: left;
            background: none;
            border: none;
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary-color);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.active {
            max-height: 200px;
        }

        .faq-answer p {
            padding-bottom: 32px;
            color: var(--text-secondary);
        }

        /* Contact */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 96px;
        }

        .contact-info h3 {
            margin-bottom: 32px;
        }

        .contact-item {
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .contact-form {
            background: var(--bg-secondary);
            padding: 48px;
            border-radius: 4px;
        }

        .form-group {
            margin-bottom: 32px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            border: 1px solid #E5E7EB;
            border-radius: 4px;
            font-size: 16px;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        /* Footer */
        .footer {
            background: var(--text-primary);
            color: white;
            padding: 96px 0 48px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h3 {
            margin-bottom: 24px;
            color: var(--primary-color);
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            margin-bottom: 8px;
            display: block;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 48px;
            border-top: 1px solid #444;
            color: #999;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 24px;
        }

        .footer-links a {
            color: #999;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        /* Popups */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            display: none;
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .popup {
            background: white;
            border-radius: 4px;
            padding: 48px;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: popupSlideIn 0.3s ease;
        }

        @keyframes popupSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .popup-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-secondary);
        }

        .popup h2 {
            margin-bottom: 32px;
            color: var(--text-primary);
        }

        .popup h3 {
            margin: 24px 0 16px;
            color: var(--text-primary);
        }

        .popup p {
            margin-bottom: 16px;
            color: var(--text-secondary);
        }

        /* Newsletter Form */
        .newsletter-form {
            max-width: 500px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

        .checkbox-group {
            margin: 24px 0;
        }

        .checkbox-group input[type="checkbox"] {
            margin-right: 8px;
        }

        .success-message {
            background: var(--success);
            color: white;
            padding: 16px;
            border-radius: 4px;
            margin-top: 24px;
            display: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            h1 {
                font-size: 40px;
            }

            h2 {
                font-size: 32px;
            }

            .section {
                padding: 64px 0;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .popup {
                margin: 24px;
                padding: 32px;
            }
        }
    