

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-section {
    background: var(--ga-primary-050);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: var(--ga-shadow-md);
    margin-bottom: 3rem;
    text-align: center;
    border-left: 4px solid var(--ga-primary-700);
}

.hero-section h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--ga-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--ga-shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ga-shadow-md);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    background-color: white;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

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

.mobile-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mobile-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.mobile-images img {
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.compliance-section {
    background: var(--ga-primary-050);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--ga-shadow-md);
    margin: 3rem 0;
    border-left: 4px solid var(--ga-primary-700);
}

.compliance-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: var(--ga-shadow-md);
}

@media (max-width: 768px) {
    
    
    

    

    

    

    

    h1 {
        font-size: 2rem;
    }

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

    .mobile-images img {
        height: 250px;
    }
}

.section-title { text-align: center; margin-bottom: var(--ga-space-8); }
