/* Import Inter Font - Open License */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary-green: #0a700a; /* Approximated from your design */
    --text-main: #000000;
    --text-muted: #666666;
    --bg-white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
}

.logo img {
    height: 110px; /* Adjust based on your logo image */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer (Common for all pages) */
footer {
    padding: 80px 10% 40px;
    border-top: 1px solid #eee;
    margin-top: 100px;
}

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

.footer-brand h3 { margin-bottom: 20px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.footer-column h4 { font-size: 0.9rem; margin-bottom: 20px; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a { 
    text-decoration: none; 
    color: var(--text-muted); 
    font-size: 0.85rem; 
}

.social-icons { display: flex; gap: 15px; }
.social-icons img { width: 20px; opacity: 0.6; }


/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 10%;
    gap: 5%;
}

.hero-content { flex: 1; }
.hero-image { flex: 1; }
.hero-image img { width: 100%; border-radius: 20px; }

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-checklist {
    list-style: none;
    margin-bottom: 40px;
}

.hero-checklist li {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.hero-checklist li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 15px;
}

/* Buttons */
.hero-buttons { display: flex; gap: 20px; }
.btn-solid {
    background: var(--primary-green);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.btn-outline {
    border: 1px solid #ccc;
    color: var(--text-main);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
}

/* Logo Bar */
.logo-bar {
    text-align: center;
    padding: 80px 10%;
}

.logo-bar p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.logo-row {
    display: flex;
    justify-content: space-between;
    filter: grayscale(100%);
    opacity: 0.5;
}

/* Contact Section v2 */
.contact-section {
    background-color: #f9f9f9;
    padding: 100px 10%;
}

.contact-container {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.contact-info { flex: 1; }
.contact-info h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.1; }
.contact-info p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; }

.info-item { margin-bottom: 20px; }
.info-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; color: var(--primary-green); letter-spacing: 1px; }

/* The Form Card */
.contact-form-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.btn-solid-full {
    width: 100%;
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-solid-full:hover { opacity: 0.9; }

/* Mobile logic - quick preview */
@media (max-width: 900px) {
    .contact-container { flex-direction: column; gap: 50px; }
}

/* Footer Styles */
.footer-v2 {
    background-color: #fff;
    padding: 80px 10% 40px;
    border-top: 1px solid #eee;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Brand column is slightly wider */
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 20px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

/* Social Icon Styling */
.social-icon {
    width: 24px;
    height: 24px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: opacity 0.3s, filter 0.3s;
}

.social-icon:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Typography for footer links */
.footer-v2 h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-v2 ul {
    list-style: none;
}

.footer-v2 ul li {
    margin-bottom: 12px;
}

.footer-v2 ul li a {
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-v2 ul li a:hover {
    color: var(--primary-green);
}

/* Bottom strip */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #f5f5f5;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #aaa;
}

/* Resources Hero */
.resources-hero {
    padding: 100px 10% 60px;
    background: linear-gradient(to bottom, #f9f9f9, #fff);
    text-align: center;
    color: #0C793D;
}

.resources-hero p {
    color: black; /* Keeps the subtitle grey/muted */
}

.resources-hero h1 { font-size: 3rem; margin-bottom: 20px; }

/* Grid Sections */
.download-grid-section, .faq-section {
    padding: 60px 10%;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 { font-size: 1.8rem; font-weight: 600; }
.header-line { width: 50px; height: 3px; background: var(--primary-green); margin-top: 10px; }

/* Download Cards */
.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.d-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.d-icon { font-size: 2rem; margin-bottom: 15px; }
.d-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.d-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.btn-text {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* FAQ Accordion */
.faq-container { max-width: 800px; }

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-item summary {
    list-style: none;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.faq-item[open] summary::after { content: '−'; }

.faq-answer {
    padding-top: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* Company Intro Section */
.company-intro {
    padding: 120px 10%;
    background-color: var(--bg-white);
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.intro-container {
    max-width: 800px; /* Limits width for optimal readability */
    margin: 0 auto;
}

.eyebrow {
    display: block;
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.company-intro h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.company-intro p {
    font-size: 1.25rem; /* Larger font for 'Statement' feel */
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 400;
}

/* Accent highlight inside paragraph */
.company-intro p strong {
    color: var(--text-main);
    font-weight: 600;
}


/* Status Page Styles */
.status-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh; /* Centers the card vertically in the viewport */
    padding: 20px;
    background-color: #f9f9f9;
}

.status-card {
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.status-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.status-card h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.status-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Success specific */
.success-icon { color: var(--primary-green); }

/* Error specific */
.error-icon { color: #d93025; } /* Modern Google-style Red */