/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5a7a3d;
    --secondary-color: #e67e22;
    --accent-color: #2c5f2d;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e4e8;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    padding: 20px 0;
}

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

.logo {
    text-align: center;
}

.main-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Navigation Styles */
.navigation {
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-color);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 16px 32px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-small {
    padding: 40px 0;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Main Content */
.main-content {
    padding: 50px 0;
}

.content-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

.content-section h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.intro-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
    margin: 0;
}

/* Feature Grid */
.features {
    margin: 40px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--secondary-color);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    background: var(--bg-white);
    padding: 28px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.service-item:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow-lg);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.service-icon {
    font-size: 2rem;
}

.service-item h2 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.service-item p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
}

/* Payment Section */
.payment-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 40px;
    text-align: center;
}

.payment-section h2 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.payment-section p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.payment-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

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

.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    background: var(--bg-white);
    transition: border-color 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: #1e4620;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.contact-section h2 {
    color: var(--text-dark);
    margin-bottom: 28px;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.contact-card {
    background: var(--bg-light);
    padding: 28px;
    border-radius: 4px;
    text-align: center;
    border-top: 3px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.6;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-info,
.email-protected {
    user-select: all;
}

/* CTA Section */
.cta-section {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 50px 40px;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: var(--text-light);
}

.cta-section .btn-primary {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.cta-section .btn-primary:hover {
    background: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    text-align: center;
}

.cpa-badge {
    margin-bottom: 16px;
    opacity: 0.9;
    width: 120px;
    height: auto;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

    .main-logo {
        max-width: 400px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu a {
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .content-section {
        padding: 24px;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

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

    .service-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .main-logo {
        max-width: 300px;
    }

    .hero {
        padding: 40px 0;
    }

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

    .main-content {
        padding: 30px 0;
    }

    .content-section {
        padding: 20px;
    }
}

/* Deadline Cards */
.deadline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.deadline-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 4px;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.deadline-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.deadline-card.urgent {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff9f0 0%, var(--bg-white) 100%);
}

.deadline-date {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.deadline-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.deadline-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    padding-bottom: 16px;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    padding: 4px;
    line-height: 1.1;
}

.timeline-content {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
    border-left: 3px solid var(--secondary-color);
}

.timeline-content h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.timeline-content strong {
    color: var(--secondary-color);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.faq-section h2 {
    color: var(--text-dark);
    margin-bottom: 32px;
    font-size: 1.8rem;
    font-weight: 600;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: var(--secondary-color);
    box-shadow: 0 3px 12px rgba(230, 126, 34, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    user-select: none;
    background: var(--bg-white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafbfc;
}

.faq-item.active .faq-question {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 18px;
}

.faq-question h3 {
    color: var(--text-dark);
    font-size: 1.15rem;
    margin: 0;
    font-weight: 600;
    padding-right: 24px;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--secondary-color);
    color: var(--bg-white);
}

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

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 8px 28px 24px 28px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}
