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

body {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-top {
    background: #2c5530;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar {
    padding: 15px 0;
}

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

.nav-brand h2 {
    color: #2c5530;
    font-size: 28px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5530;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c5530;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #2c5530;
    color: white;
}

.btn-primary:hover {
    background: #1e3a21;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-secondary:hover {
    background: #2c5530;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    background: #2c5530;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stats-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2c5530;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Application Form Section */
.application-form {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.form-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-card h4 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 20px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.dealership-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
}

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

.content-text h2 {
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-list .feature-item h3 {
    color: #2c5530;
    margin-bottom: 10px;
    font-size: 22px;
}

.feature-list .feature-item p {
    color: #666;
    line-height: 1.6;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.success-stories h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 60px;
    font-weight: 600;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-card h4 {
    color: #2c5530;
    margin-bottom: 5px;
    font-size: 20px;
}

.dealer-since {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.testimonial-card p {
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

.success-image {
    text-align: center;
}

.success-image img {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Fertilizer Benefits */
.fertilizer-benefits {
    padding: 80px 0;
}

.fertilizer-benefits h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #2c5530;
}

.stat-card .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    color: #666;
    font-size: 16px;
    line-height: 1.4;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fffe;
    border-radius: 12px;
}

.benefit-icon {
    font-size: 24px;
    min-width: 40px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.soil-image {
    text-align: center;
}

.soil-image img {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 600;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    background: #2c5530;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 22px;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.dealer-benefits {
    margin-bottom: 60px;
}

.dealer-benefits h3 {
    text-align: center;
    font-size: 28px;
    color: #2c5530;
    margin-bottom: 40px;
    font-weight: 600;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list .benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.check-icon {
    background: #2c5530;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.cta-section {
    text-align: center;
}

.processing-note {
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-card h3 {
    color: #2c5530;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-card ul {
    list-style: none;
    padding: 0;
}

.product-card li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.product-card li:before {
    content: "✓";
    color: #2c5530;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #b8d4bb;
    line-height: 1.6;
}

.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-contact p {
    color: #b8d4bb;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #4a6b4e;
    padding-top: 20px;
    text-align: center;
    color: #b8d4bb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 20px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        text-align: center;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .dealership-form {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

    /* New page responsive styles */
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline:before {
        display: none;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .form-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .category-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 250px;
    }

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .emergency-item {
        padding: 20px;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #2c5530 0%, #3d6b41 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mission-card, .vision-card {
    background: #f8fffe;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #2c5530;
}

.mission-card h3, .vision-card h3 {
    color: #2c5530;
    font-size: 24px;
    margin-bottom: 20px;
}

.company-values {
    margin-bottom: 80px;
}

.company-values h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-item h4 {
    color: #2c5530;
    font-size: 22px;
    margin-bottom: 15px;
}

.company-journey {
    margin-bottom: 80px;
}

.company-journey h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2c5530;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.year {
    background: #2c5530;
    color: white;
    padding: 20px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    min-width: 80px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.timeline-item .content {
    flex: 1;
    padding: 20px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-item .content h4 {
    color: #2c5530;
    margin-bottom: 10px;
}

.team-section {
    margin-bottom: 80px;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-item .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 10px;
}

.stat-item .stat-label {
    color: #666;
    font-size: 16px;
}

.certifications {
    margin-bottom: 80px;
}

.certifications h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 60px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cert-item {
    background: #f8fffe;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #2c5530;
}

.cert-item h4 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 20px;
}

.cta-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Application Process Styles */
.application-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.application-process h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: #2c5530;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c5530;
    margin-bottom: 10px;
    font-size: 20px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
}

.requirements-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 60px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.requirement-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #2c5530;
}

.requirement-card h3 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 22px;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
}

.requirement-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.requirement-card li:before {
    content: "•";
    color: #2c5530;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Detailed Application Form */
.detailed-application-form {
    padding: 80px 0;
    background: #f8f9fa;
}

.detailed-application-form h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 20px;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.detailed-form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.form-section h3 {
    color: #2c5530;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e1e5e9;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.checkbox-group a {
    color: #2c5530;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Support Section */
.support-section {
    padding: 80px 0;
}

.support-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 20px;
}

.support-section p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.support-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.support-item h4 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 20px;
}

.support-item p {
    color: #666;
    margin-bottom: 10px;
}

.support-item strong {
    color: #2c5530;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-method {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-method h3 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-method p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-method strong {
    color: #2c5530;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.form-info h2 {
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 20px;
}

.form-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Regional Offices */
.regional-offices {
    padding: 80px 0;
}

.regional-offices h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 60px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.office-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #2c5530;
}

.office-card h3 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 20px;
}

.office-card p {
    color: #666;
    margin-bottom: 8px;
}

.office-card strong {
    color: #2c5530;
}

/* Emergency Support */
.emergency-support {
    padding: 80px 0;
    background: #f8f9fa;
}

.emergency-support h2 {
    text-align: center;
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 60px;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.emergency-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #e74c3c;
}

.emergency-item h3 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 20px;
}

.emergency-number {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    margin: 15px 0;
}

/* Privacy and Terms Pages */
.privacy-content, .terms-content {
    padding: 80px 0;
}

.policy-intro, .terms-intro {
    background: #f8fffe;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2c5530;
    margin-bottom: 40px;
}

.policy-section, .terms-section {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.policy-section h2, .terms-section h2 {
    color: #2c5530;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e1e5e9;
}

.policy-section h3, .terms-section h3 {
    color: #2c5530;
    font-size: 20px;
    margin: 25px 0 15px 0;
}

.policy-section ul, .terms-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section li, .terms-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.contact-details {
    background: #f8fffe;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2c5530;
    margin-top: 20px;
}

/* FAQ Page Styles */
.faq-categories {
    padding: 40px 0;
    background: #f8f9fa;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    color: #2c5530;
    border: 2px solid #2c5530;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.category-btn:hover, .category-btn.active {
    background: #2c5530;
    color: white;
}

.faq-content {
    padding: 80px 0;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category h2 {
    font-size: 32px;
    color: #2c5530;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s;
}

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

.faq-question h3 {
    color: #2c5530;
    font-size: 18px;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    min-width: 30px;
    text-align: center;
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
    background: #f8fffe;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.more-questions {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.more-questions h2 {
    font-size: 36px;
    color: #2c5530;
    margin-bottom: 20px;
}

.more-questions p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b8d4bb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Brand Link */
.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.nav-brand a:hover {
    color: #1e3a21;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for form validation */
.form-error {
    border-color: #e74c3c !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}