
    /* Coverage We Arrange Section */
.coverage-section {
    padding: 4rem 0 6rem;
    text-align: center;
}

.coverage-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: #51524A;
    margin-bottom: 0;
}

.coverage-sub-heading {
    margin-top: 1rem;
    font-size: 1.45rem;
    font-weight: 600;
    color: #51524A;
    margin-bottom: 0;
}

.text-gradient {
    background: linear-gradient(to right, #c4a366, #51574d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insurance-brokers-block {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.insurance-card {
    text-align: center;
    width: calc(20% - 2rem);
    display: flex;
    flex-direction: column;
    background: #f9fafb;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.insurance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.insurance-card img {
    height: 7rem;
    margin: 0 auto;
}

.insurance-card h4 {
    margin-top: 1rem;
    color: #000;
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.insurance-card p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.quote-button {
    background: #c4a366;
    #color: white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
    margin-top: auto;
}

.quote-button:hover {
    background: #c4a366 !important;
    color: white !important;
    text-decoration: none !important;
    opacity: 1 !important;
}



/* Responsive Adjustments */
@media (max-width: 1024px) {
    .insurance-card {
        width: calc(25% - 2rem);
    }
}

@media (max-width: 768px) {
    .insurance-card {
        width: calc(50% - 2rem);
    }

    .coverage-heading {
        font-size: 1.875rem;
    }
}

@media (max-width: 640px) {
    .insurance-card {
        width: 100%;
        max-width: 300px;
    }

    .coverage-section {
        padding: 3rem 1rem;
    }
}

section {
    width: 100%;

}

.container-head {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.left-content {
    text-align: left;
    flex: 1;
    min-width: 300px;
}

.right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #51524A;
    margin-bottom: 0;
    line-height: 1.2;
}

h2 {
    margin-top: 0.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    color: #51524A;
    margin-bottom: 0;
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating {
    font-size: 1.1rem;
    font-weight: 600;
    color: #51524A;
}

.stars {
    font-size: 1.1rem;
    color: #ffcc00;
}

.reviews {
    font-size: 1rem;
    color: #777;
}

.button-req {
    display: inline-block;
    background-color: #c4a366;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.button-req:hover {
    background: #c4a366 !important;
    color: white !important;
    text-decoration: none !important;
    opacity: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container-head {
        flex-direction: column;
        align-items: center;
    }

    .container-head .left-content {
        text-align: center;
        width: 100%;
    }

    .container-head .left-content h1,
    .container-head .left-content h2 {
        text-align: center;
    }

    .right-content {
        align-items: center;
        width: 100%;
        margin-top: 20px;
    }
}
