:root {
    --primary: #0a2e1e;
    /* Dark Green */
    --primary-light: #164a32;
    --accent: #bc9d67;
    /* Gold */
    --accent-hover: #a18556;
    --bg-light: #fefefe;
    /* White/Off-white */
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --white: #ffffff;
    --error: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Century Gothic', Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary);
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.btn-outline {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px 0;
    background-color: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-img-element {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--accent);
    object-fit: cover;
}

.badge {
    display: inline-block;
    background-color: rgba(197, 163, 101, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(197, 163, 101, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 163, 101, 0.5);
}

/* Info Section */
.info-section {
    padding: 100px 0;
    background-color: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.info-card {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.featured-card {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.featured-card h3 {
    color: var(--accent);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--primary-light);
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 1.125rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.contact-form-container {
    background-color: var(--white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.lead-form h3 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    color: var(--primary);
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 500;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(18, 53, 36, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-light);
}

.form-disclaimer {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--text-main);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 40px 0;
    font-size: 0.875rem;
}

.footer p {
    margin-bottom: 8px;
}

/* FAQ Area */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: var(--primary);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-family: inherit;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        justify-content: center;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .btn-outline {
        display: none;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .contact-form-container {
        padding: 32px 24px;
    }
}