
        /* ==========================================================================
           CSS Variables for Theming
           Change these values to create the 5 different landing pages.
           ========================================================================== */
 :root {
    --primary-color: #2f2f2f; /* Charcoal */
    --secondary-color: #c49b3a; /* Classic Gold */
    --accent-color: #e5e5e5; /* Soft Silver */
    --background-color: #faf8f4;
    --text-color: #3a3a3a;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    --hero-bg-image: url('../img/hero.jpg');
}


        /* ==========================================================================
           Global Styles & Resets
           ========================================================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--body-font);
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--background-color);
        }

        h1, h2, h3 {
            font-family: var(--heading-font);
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-padding {
            padding: 4rem 0;
        }

        .text-center {
            text-align: center;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--secondary-color);
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: var(--primary-color);
        }

        /* ==========================================================================
           Header
           ========================================================================== */
        .header {
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .navbar .logo {
            font-family: var(--heading-font);
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--secondary-color);
        }
        
        .header-cta .btn {
            background-color: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
        }
        .header-cta .btn:hover {
            background-color: var(--secondary-color);
            color: #fff;
        }

        /* ==========================================================================
           Hero Section
           ========================================================================== */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--hero-bg-image);
            background-size: cover;
            background-position: center;
            height: 90vh;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            color: #fff;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        /* ==========================================================================
           About Preview Section
           ========================================================================== */
        .about-preview .container {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .about-preview img {
            max-width: 400px;
            border-radius: 10px;
            flex-shrink: 0;
        }
        .about-preview-text {
            flex: 1;
        }

        /* ==========================================================================
           Why Choose Us Section
           ========================================================================== */
        .why-choose-us {
            background: #fff;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        .feature-item i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .feature-item h3 {
            font-size: 1.5rem;
        }

        /* ==========================================================================
           Services Section
           ========================================================================== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 1.5rem;
        }
        .service-card {
            background: #fff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .service-card h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .service-card ul {
            list-style-type: none;
            padding-left: 0;
        }
        .service-card ul li {
            padding: 0.25rem 0;
        }
        .service-card ul li::before {
            content: "✓";
            color: var(--secondary-color);
            font-weight: bold;
            margin-right: 0.5rem;
        }
        
        /* ==========================================================================
           Testimonials Section
           ========================================================================== */
        .testimonials {
            background: #fff;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .testimonial-card {
            background: var(--background-color);
            padding: 2rem;
            border-left: 5px solid var(--secondary-color);
            border-radius: 5px;
        }
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 1rem;
        }
        .testimonial-card h5 {
            font-weight: bold;
            color: var(--primary-color);
        }
        .testimonial-card span {
            font-size: 0.9rem;
            color: #777;
        }

        /* ==========================================================================
           FAQ Section
           ========================================================================== */
        .faq-item {
            background: #fff;
            margin-bottom: 1rem;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .faq-question {
            width: 100%;
            padding: 1.5rem;
            font-size: 1.1rem;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--body-font);
            font-weight: bold;
        }
        .faq-question i {
            transition: transform 0.3s ease;
        }
        .faq-question.active i {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 1.5rem;
        }
        .faq-answer.show {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        /* ==========================================================================
           Get In Touch Form
           ========================================================================== */
        .contact-form {
            background: #fff;
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        .form-group textarea {
            resize: vertical;
        }
        .form-message {
            text-align: center;
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 5px;
            display: none; /* Hidden by default */
        }
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }

        /* ==========================================================================
           Footer
           ========================================================================== */
        .footer {
            background: var(--primary-color);
            color: #fff;
            padding: 3rem 0 1rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-column h3 {
            color: #fff;
            margin-bottom: 1rem;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column ul li {
            margin-bottom: 0.5rem;
        }
        .footer-column ul li a {
            color: #ccc;
            transition: color 0.3s ease;
        }
        .footer-column ul li a:hover {
            color: var(--secondary-color);
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid #444;
            padding-top: 1.5rem;
            font-size: 0.9rem;
        }
        .footer-bottom a {
            color: var(--secondary-color);
        }
        
        /* ==========================================================================
           Popup (Modal) Styles
           ========================================================================== */
        .modal {
            display: none; 
            position: fixed; 
            z-index: 2000; 
            left: 0;
            top: 0;
            width: 100%; 
            height: 100%; 
            overflow: auto; 
            background-color: rgba(0,0,0,0.6);
        }
        .modal-content {
            background-color: #fefefe;
            margin: 5% auto; 
            padding: 2rem;
            border: 1px solid #888;
            width: 80%;
            max-width: 700px;
            border-radius: 8px;
            position: relative;
            animation: modalopen 0.5s;
        }
        @keyframes modalopen {
            from {opacity: 0; transform: translateY(-50px);}
            to {opacity: 1; transform: translateY(0);}
        }
        .close {
            color: #aaa;
            position: absolute;
            top: 15px;
            right: 25px;
            font-size: 28px;
            font-weight: bold;
        }
        .close:hover,
        .close:focus {
            color: var(--primary-color);
            text-decoration: none;
            cursor: pointer;
        }
        .modal-body {
            max-height: 60vh;
            overflow-y: auto;
        }
        .modal-body p {
            margin-bottom: 1rem;
        }
        .modal-form .form-group {
            margin-bottom: 1rem;
        }
        .modal-form .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .modal-form .checkbox-group input {
            width: auto;
        }
        
        /* ==========================================================================
           Responsive Design
           ========================================================================== */
        @media (max-width: 768px) {
            .nav-links {
                display: none; /* For simplicity, hiding nav on mobile. A real implementation would use a hamburger menu. */
            }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .about-preview .container {
                flex-direction: column;
            }
        }

    