* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.hero {
    background: #eff6ff;
    padding: 2rem 1rem;
    text-align: center;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex-grow: 1;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.5rem;
    color: #4b5563;
}

.main-image {
    max-width: 1200px;
    margin: 2rem auto;
    height: 400px;
    background: #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features {
    max-width: 1200px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.feature-img {
    width: 100%;
    height: 200px;
    background: #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.logo-img {
    width: 200px;  /* You can adjust this value */
    height: auto;
    flex-shrink: 0;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .shield-logo {
        width: 80px;
    }
}