 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Source Sans Pro', sans-serif;
            line-height: 1.7;
            color: #1C2641;
            background-color: #FFFFFF;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        .header {
            background: #FFFFFF;
            border-bottom: 1px solid #D1D5DB;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 400;
            color: #1C2641;
            text-decoration: none;
            letter-spacing: 0.05em;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 48px;
        }

        .nav-link {
            text-decoration: none;
            color: #5A647F;
            font-weight: 400;
            font-size: 16px;
            transition: color 0.3s ease-in-out;
            position: relative;
        }

        .nav-link:hover {
            color: #B48F5B;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #B48F5B;
            transition: width 0.3s ease-in-out;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #1C2641;
        }

        /* Hero Section */
        .hero {
            padding: 200px 0 128px;
            background: linear-gradient(rgba(28, 38, 65, 0.7), rgba(28, 38, 65, 0.7)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231C2641" width="1200" height="600"/><path fill="%23B48F5B" opacity="0.1" d="M0 300L100 250L200 350L300 200L400 300L500 150L600 250L700 100L800 200L900 50L1000 150L1100 100L1200 200V600H0Z"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 72px;
            font-weight: 300;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
            color: white;
        }

        .hero p {
            font-size: 18px;
            color: #E5E7EB;
            margin-bottom: 48px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 18px 36px;
            background: #1C2641;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.4s ease-in-out;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .btn:hover {
            background: #B48F5B;
            transform: translateY(-2px);
        }

        /* Section Styles */
        .section {
            padding: 128px 0;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 44px;
            font-weight: 400;
            text-align: center;
            margin-bottom: 16px;
            color: #1C2641;
        }

        .section-subtitle {
            font-size: 18px;
            text-align: center;
            color: #5A647F;
            margin-bottom: 96px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* About Preview */
        .about-preview {
            background: #F5F6F8;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 96px;
            align-items: center;
        }

        .about-text h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #1C2641;
        }

        .about-text p {
            color: #5A647F;
            margin-bottom: 32px;
            font-size: 16px;
        }

        .about-features {
            list-style: none;
        }

        .about-features li {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            color: #374151;
            font-size: 16px;
        }

        .about-features li:before {
            content: '◆';
            color: #B48F5B;
            font-weight: bold;
            margin-right: 16px;
            font-size: 12px;
        }

        .heritage-stats {
            background: #FFFFFF;
            padding: 48px;
            border: 1px solid #D1D5DB;
            text-align: center;
        }

        .stat-item {
            margin-bottom: 32px;
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            font-weight: 600;
            color: #B48F5B;
            display: block;
        }

        .stat-label {
            color: #5A647F;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Why Choose Us */
        .why-choose-us {
            background: #FFFFFF;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 48px;
        }

        .feature-card {
            background: #F5F6F8;
            padding: 48px 32px;
            border: 1px solid #D1D5DB;
            text-align: center;
            transition: all 0.3s ease-in-out;
        }

        .feature-card:hover {
            background: #FFFFFF;
            border-color: #B48F5B;
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: #B48F5B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 32px;
            color: white;
            font-size: 32px;
        }

        .feature-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #1C2641;
        }

        .feature-card p {
            color: #5A647F;
            font-size: 16px;
        }

        /* Services */
        .services {
            background: #F5F6F8;
        }

        .service-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 64px;
            border-bottom: 1px solid #D1D5DB;
        }

        .service-tab {
            background: none;
            border: none;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            color: #5A647F;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease-in-out;
        }

        .service-tab.active {
            color: #B48F5B;
            border-bottom-color: #B48F5B;
        }

        .services-grid {
            display: none;
        }

        .services-grid.active {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .service-category {
            background: #FFFFFF;
            padding: 40px;
            border: 1px solid #D1D5DB;
            transition: all 0.3s ease-in-out;
        }

        .service-category:hover {
            border-color: #B48F5B;
            box-shadow: 0 4px 12px rgba(180, 143, 91, 0.1);
        }

        .service-category h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #1C2641;
            display: flex;
            align-items: center;
        }

        .service-category h3:before {
            content: '◆';
            color: #B48F5B;
            margin-right: 12px;
            font-size: 16px;
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            padding: 12px 0;
            color: #374151;
            border-bottom: 1px solid #F5F6F8;
            font-size: 15px;
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        /* Testimonials */
        .testimonials {
            background: #FFFFFF;
        }

        .testimonials-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: #F5F6F8;
            padding: 64px 48px;
            border: 1px solid #D1D5DB;
            text-align: center;
            position: relative;
        }

        .testimonial-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-style: italic;
            color: #1C2641;
            margin-bottom: 32px;
            line-height: 1.4;
        }

        .testimonial-author {
            font-weight: 600;
            color: #1C2641;
            font-size: 18px;
        }

        .testimonial-role {
            color: #5A647F;
            font-size: 14px;
            margin-top: 8px;
        }

        .quote-mark {
            font-family: 'Cormorant Garamond', serif;
            font-size: 72px;
            color: #B48F5B;
            position: absolute;
            top: 16px;
            left: 32px;
            line-height: 1;
        }

        /* FAQ */
        .faq {
            background: #F5F6F8;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: #FFFFFF;
            margin-bottom: 24px;
            border: 1px solid #D1D5DB;
            overflow: hidden;
        }

        .faq-question {
            background: none;
            border: none;
            padding: 32px;
            width: 100%;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            color: #1C2641;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Cormorant Garamond', serif;
        }

        .faq-answer {
            padding: 0 32px 32px;
            color: #5A647F;
            display: none;
            font-size: 16px;
        }

        .faq-answer.active {
            display: block;
        }

        /* Contact Form */
        .contact {
            background: #FFFFFF;
        }

        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background: #F5F6F8;
            padding: 64px 48px;
            border: 1px solid #D1D5DB;
        }

        .form-group {
            margin-bottom: 32px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #1C2641;
            font-size: 15px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            border: 1px solid #D1D5DB;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s ease-in-out;
            background: #FFFFFF;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #B48F5B;
        }

        /* Footer */
        .footer {
            background: #1C2641;
            color: white;
            padding: 96px 0 48px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 64px;
            margin-bottom: 64px;
        }

        .footer-section h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #B48F5B;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #D1D5DB;
            text-decoration: none;
            transition: color 0.3s ease-in-out;
            font-size: 15px;
        }

        .footer-section ul li a:hover {
            color: #B48F5B;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 48px;
            text-align: center;
            color: #9B9CA3;
            font-size: 14px;
        }

        /* Popup Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(28, 38, 65, 0.8);
            z-index: 2000;
        }

        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 48px;
            max-width: 700px;
            max-height: 80vh;
            overflow-y: auto;
            display: none;
            z-index: 2001;
            border: 1px solid #D1D5DB;
        }

        .popup h3 {
            font-family: 'Cormorant Garamond', serif;
            margin-bottom: 24px;
            color: #1C2641;
        }

        .popup-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #5A647F;
        }

        .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: 56px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .service-tabs {
                flex-wrap: wrap;
            }

            .features-grid,
            .services-grid.active {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 36px;
            }

            .contact-form {
                margin: 0 16px;
                padding: 48px 32px;
            }
        }

        /* Confirmation Messages */
        .confirmation {
            background: #057A55;
            color: white;
            padding: 16px;
            border-radius: 4px;
            margin-bottom: 24px;
            display: none;
        }

        .confirmation.error {
            background: #C81E1E;
        }
    