/* Hero Section */
.hero {
    background-color: var(--color-primary);
    /* Fallback */
    background-image: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&q=80&w=1200');
    /* Placeholder image */
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 6rem 0;
    /* Reduced padding for mobile friendly start */
    text-align: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 0;
    }
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Trust Section */
.trust-section {
    background-color: var(--color-bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature h4 {
    color: var(--color-accent);
}