
/* Section Layout */
.supplier-section {
    background-color: #003A7A;


    padding: 20px 0;

}

.supplier-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    gap: 20px;
}

/* Improved Text Styling */
.supplier-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    flex: 1;
    /* Removed problematic white-space rules */
}

/* Button Styling */
.coverage-button {
    flex-shrink: 0;
    background-color: #fff;
   border-size: 1px;
    border-color:#fff;
    color: #313669;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.coverage-button:hover {
    background-color: #313669;
    color:#fff;
}

/* Responsive Adjustments */
@media (max-width: 880px) {
    .supplier-container {
        flex-wrap: wrap;
    }
    
    .coverage-button {
        margin-top: 15px;
        margin-left: auto; /* Pushes button to right */
    }
}

@media (max-width: 480px) {
    .supplier-text, .coverage-button {
        width: 100%;
    }
    
    .coverage-button {
        margin-top: 15px;
        text-align: center;
    }
}
