.hero-section {
        background: #fffdf2;
        color: black;
        padding: 60px 20px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .hero-image {
        flex: 1 1 40%;
        min-width: 300px;
    }

    .hero-image img {
        width: 100%;
        border-radius: 10px;
        object-fit: cover;
    }

    .hero-content {
        flex: 1 1 50%;
        padding: 20px 40px;
    }

    .hero-content h1 {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .hero-content h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .hero-button {
        background-color: #ff5e5e;
        color: white;
        font-weight: bold;
        font-size: 20px;
        padding: 15px 30px;
        border: none;
        border-radius: 8px;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 30px;
    }

  .hero-logos-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 20px;
   
    font-family: 'Segoe UI', sans-serif;
}

.hero-card {
    background: #fffbe6; /* light yellow */
    border-radius: 12px;
    padding: 20px 25px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
}

.hero-card .quote {
    font-style: italic;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.hero-card .quote span {
    font-weight: bold;
    color: #d48806; /* darker yellow highlight */
}

.hero-card img {
    max-height: 25px;
    max-width: 100%;
    margin-top: 10px;
    object-fit: contain;
}