/* Military-themed color palette */
:root {
    --army-green: #4a5d23;
    --dark-green: #2d3a16;
    --olive-green: #6b7c32;
    --tan: #c7b377;
    --dark-tan: #a0956b;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray: #f5f5f5;
    --red: #cc0000;
    --gold: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.navbar {
    background-color: var(--army-green);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

.logo i {
    margin-right: 10px;
    color: var(--tan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--olive-green);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-green), var(--army-green));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    color: var(--tan);
}

/* Calculator Section */
.calculator-section {
    padding: 4rem 0;
}

.calculator-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--army-green);
}

.calculator-card h2 {
    color: var(--army-green);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--dark-green);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--army-green);
}

/* Test Events */
.test-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.event-card {
    background: var(--gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--olive-green);
}

.event-card h3 {
    color: var(--army-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-card h3 i {
    color: var(--tan);
}

/* Calculate Button */
.calculate-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--army-green), var(--olive-green));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 2rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 93, 35, 0.3);
}

.calculate-btn i {
    margin-right: 0.5rem;
}

/* Results Section */
.results-section {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--gray);
    border-radius: 8px;
    border: 2px solid var(--army-green);
}

.results-section h3 {
    color: var(--army-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.total-score {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
}

.score-label {
    font-size: 1.2rem;
    color: var(--dark-green);
}

.score-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--army-green);
    margin: 0 0.5rem;
}

.score-max {
    font-size: 1.2rem;
    color: var(--dark-green);
}

.individual-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-score {
    background: var(--white);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    border-left: 3px solid var(--olive-green);
}

.event-name {
    font-size: 0.9rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.event-points {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--army-green);
}

.pass-fail {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
}

.pass {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.fail {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--tan);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--tan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--olive-green);
    color: var(--tan);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Overlay */
.nav-menu.mobile-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--army-green);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding-top: 80px;
}

.nav-menu.mobile-active li {
    margin: 1rem 0;
}

.nav-menu.mobile-active a {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: block;
    text-align: center;
    min-width: 200px;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.mobile-active {
        display: flex;
    }

    .nav-container {
        justify-content: space-between;
        padding: 0 15px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    /* Container and spacing */
    .container {
        padding: 0 15px;
    }

    /* Hero section */
    .hero {
        padding: 2rem 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Page headers */
    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    /* Calculator section */
    .calculator-section {
        padding: 2rem 0;
    }

    .calculator-card {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .calculator-card h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    /* Form elements */
    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
        border-radius: 6px;
    }

    /* Test events grid */
    .test-events {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .event-card {
        padding: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .event-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    /* Calculate button */
    .calculate-btn {
        padding: 1rem;
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    /* Results section */
    .results-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .total-score {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .score-value {
        font-size: 2.5rem;
    }

    .individual-scores {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .event-score {
        padding: 0.75rem;
    }

    /* Usage section */
    .usage-section {
        padding: 2rem 0;
    }

    .usage-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .step-number {
        margin-bottom: 1rem;
    }

    /* Info section */
    .info-section {
        padding: 2rem 0;
    }

    .info-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .info-section h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.75rem 0;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-info {
        padding: 1.25rem;
    }

    .event-info h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    /* Content sections */
    .content-section {
        padding: 2rem 0;
    }

    .content-card {
        padding: 1.5rem;
        margin: 0 10px 1.5rem 10px;
    }

    .content-card h2 {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem 0;
    }

    .content-card h3 {
        font-size: 1.3rem;
        margin: 1.25rem 0 0.75rem 0;
    }

    .content-card h4 {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem 0;
    }

    /* Tables */
    .standards-table {
        font-size: 0.9rem;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }

    .standards-table th,
    .standards-table td {
        padding: 0.5rem;
    }

    /* Contact form */
    .contact-form {
        max-width: 100%;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .contact-item i {
        font-size: 2rem;
    }

    /* FAQ items */
    .faq-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .faq-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    /* Footer */
    footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1rem;
    }

    .footer-section h4 {
        margin-bottom: 0.75rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.9rem;
    }

    /* Newsletter form */
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form button {
        width: 100%;
    }

    /* Guide sections */
    .guide-section {
        margin-bottom: 1.5rem;
    }

    .guide-section h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .guide-section h4 {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem 0;
    }

    /* Post meta */
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .calculator-card,
    .content-card {
        padding: 1rem;
        margin: 0 5px;
    }

    .calculator-card h2 {
        font-size: 1.3rem;
    }

    .event-card {
        padding: 1rem;
    }

    .step {
        padding: 1rem;
    }

    .event-info {
        padding: 1rem;
    }

    .score-value {
        font-size: 2rem;
    }

    .nav-menu.mobile-active a {
        font-size: 1.3rem;
        min-width: 180px;
        padding: 0.75rem 1.5rem;
    }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .nav-menu.mobile-active {
        padding-top: 60px;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .nav-menu.mobile-active li {
        margin: 0.5rem 0;
    }

    .nav-menu.mobile-active a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, var(--dark-green), var(--army-green));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content-section {
    padding: 4rem 0;
}

.content-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--army-green);
    margin-bottom: 2rem;
}

.guide-section {
    margin-bottom: 2rem;
}

.guide-section h3 {
    color: var(--army-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-section h3 i {
    color: var(--tan);
}

.standards-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.standards-table th,
.standards-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.standards-table th {
    background-color: var(--army-green);
    color: var(--white);
}

.standards-table tr:nth-child(even) {
    background-color: var(--gray);
}
/* Blog-spe
cific styles */
.blog-post {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-post h2 {
    color: var(--army-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post h2 i {
    color: var(--tan);
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-post h3 {
    color: var(--olive-green);
    margin: 1.5rem 0 0.5rem 0;
}

.blog-post ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-post li {
    margin-bottom: 0.5rem;
}

.read-more {
    color: var(--army-green);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.read-more:hover {
    color: var(--olive-green);
}

/* Newsletter form */
.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.newsletter-form input {
    flex: 1;
}

.newsletter-form button {
    white-space: nowrap;
    margin-bottom: 0;
}

/* Contact page styles */
.contact-form {
    max-width: 600px;
}

.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--army-green);
}

.contact-info {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--army-green);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: var(--army-green);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 0.25rem;
}

.contact-item small {
    color: var(--dark-green);
}

.contact-item a {
    color: var(--army-green);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--olive-green);
}

/* FAQ styles */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: var(--army-green);
    margin-bottom: 0.5rem;
}

.faq-item a {
    color: var(--army-green);
    text-decoration: none;
}

.faq-item a:hover {
    color: var(--olive-green);
}

/* Legal pages styles */
.content-card h2 {
    color: var(--army-green);
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid var(--tan);
    padding-bottom: 0.5rem;
}

.content-card h3 {
    color: var(--olive-green);
    margin: 1.5rem 0 0.5rem 0;
}

.content-card ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-card li {
    margin-bottom: 0.5rem;
}

.content-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}/* Usage 
Section Styles */
.usage-section {
    padding: 3rem 0;
    background: var(--gray);
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--army-green);
}

.step-number {
    background: var(--army-green);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--army-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--dark-green);
    line-height: 1.6;
}

/* Info Section Styles */
.info-section {
    padding: 4rem 0;
    background: var(--white);
}

.info-section h2 {
    color: var(--army-green);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.info-section h3 {
    color: var(--olive-green);
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.info-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.info-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.info-section li strong {
    color: var(--army-green);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.event-info {
    background: var(--gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--olive-green);
}

.event-info h4 {
    color: var(--army-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.event-info h4 i {
    color: var(--tan);
}

.event-info p {
    color: var(--dark-green);
    line-height: 1.6;
}

/* Enhanced Hero Section */
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: var(--tan);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .usage-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* SEO and accessibility improvements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Focus states for accessibility */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 2px solid var(--army-green);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    footer,
    .calculate-btn {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    .content-card,
    .calculator-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}/* FAQ Se
ction Styles */
.faq-section {
    padding: 4rem 0;
    background: var(--gray);
}

.faq-section h2 {
    color: var(--army-green);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--army-green);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    color: var(--army-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--dark-green);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced mobile hamburger visibility */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        position: relative;
        z-index: 1002;
    }
    
    .hamburger span {
        background-color: var(--white) !important;
        opacity: 1;
    }
    
    /* FAQ mobile styles */
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-item {
        margin-bottom: 1.5rem;
        padding: 1.25rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Extra small devices FAQ */
@media (max-width: 480px) {
    .faq-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
}

/* Ensure hamburger is always visible on mobile */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }
    
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(74, 93, 35, 0.1);
        border-radius: 4px;
        cursor: pointer;
        z-index: 1002;
    }
    
    .hamburger:hover {
        background: rgba(74, 93, 35, 0.2);
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
        background-color: var(--white);
        display: block;
        transition: all 0.3s ease;
        transform-origin: center;
    }
}/* Additi
onal mobile menu enhancements */
@media (max-width: 768px) {
    /* Ensure hamburger is always visible and clickable */
    .hamburger {
        display: flex !important;
        position: relative;
        z-index: 1003;
        min-width: 40px;
        min-height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        transition: background-color 0.3s ease;
    }
    
    .hamburger:hover,
    .hamburger:focus,
    .hamburger:active {
        background: rgba(255, 255, 255, 0.2);
        outline: none;
    }
    
    /* Ensure hamburger spans are visible */
    .hamburger span {
        background-color: var(--white) !important;
        box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }
    
    /* Mobile navigation improvements */
    .nav-menu.mobile-active {
        animation: slideIn 0.3s ease-out;
    }
    
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Prevent text selection on hamburger */
    .hamburger {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Improve touch targets */
    .nav-menu.mobile-active a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
}