

.hero {
    background: var(--ga-primary-900);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.feature-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin: 0 auto 3rem;
    display: block;
    border-radius: 8px;
    box-shadow: var(--ga-shadow-md);
}

.hero h1 {
    color: var(--ga-white);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.intro-section {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--ga-shadow-md);
    margin-bottom: 3rem;
    border-left: 5px solid var(--ga-primary-700);
}

.intro-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.solution-card {
    background: var(--ga-primary-900);
    color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--ga-shadow-md);
    transition: all 0.3s ease;
    border-top: 4px solid var(--ga-primary-700);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: var(--ga-primary-700);
}

.solution-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ga-primary-050);
    color: var(--ga-primary-700);
    margin-bottom: var(--ga-space-3);
}
.solution-icon .ga-icon { width: 24px; height: 24px; }

.solution-card h3 {
    color: var(--ga-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--ga-gray-200);
}

.solution-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.solution-card li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--ga-gray-200);
}

.cta-section {
    background: var(--ga-primary-900);
    color: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--ga-primary-700);
    color: var(--ga-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--ga-shadow-md);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.standards-section {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--ga-shadow-md);
    margin: 3rem 0;
}

.standards-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.standard-badge {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--ga-primary-700);
    transition: all 0.3s ease;
}

.standard-badge:hover {
    background: var(--ga-primary-700);
    transform: scale(1.05);
}

.standard-badge strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    

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

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

    .hero-image {
        max-width: 350px;
    }

    .feature-image {
        max-width: 100%;
    }

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

    

    
}

/* Dark CTA block: force light text (styles.css colours main h2/h3 navy) — AA on --ga-primary-900 */
.cta-section h2, .cta-section h3, .cta-section p { color: var(--ga-white); }

/* Dark sections: light text (styles.css colours main headings navy) — AA on --ga-primary-900 */
.hero h1, .hero h2, .hero h3, .hero p, .solution-card h1, .solution-card h2, .solution-card h3, .solution-card p, .cta-section h1, .cta-section h2, .cta-section h3, .cta-section p { color: var(--ga-white); }
.cta-button { background: var(--ga-white); color: var(--ga-primary-900); }
.cta-button:hover { background: var(--ga-primary-050); color: var(--ga-primary-900); }
