/* --- CSS FOR THE SHIPPING INFO SECTION --- */

.shipping-info-section {
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f9f7f5; /* Light beige background */
    padding: 60px 40px;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    align-items: center;
}

/* --- Left Column (Map) --- */
.shipping-column-left {
    flex: 1; /* Takes up half the space */
}

.shipping-column-left h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #212529;
    margin-top: 0;
    margin-bottom: 30px;
}

.state-map-img {
    max-width: 100%;
    height: auto;
}

/* --- Right Column (Details) --- */
.shipping-column-right {
    flex: 1; /* Takes up the other half */
    display: flex;
    flex-direction: column;
}

.shipper-logos {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 20px;
}

.shipper-logos img {
    height: 40px;
    width: auto;
}

.shipping-details {
    text-align: left;
}

.shipping-details .location-text {
    font-size: 2rem;
    margin: 0;
    color: #333;
}

.shipping-details h1 {
    font-size: 5rem;
    font-weight: 800;
    margin: -10px 0 0 0;
    color: #212529;
}

.shipping-details h1::after {
    content: "!";
    color: #f59e0b; /* Orange accent */
}

.po-box-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.po-box-notice img {
    height: 24px;
    width: auto;
}

.po-box-notice p {
    font-size: 1.1rem;
    margin: 0;
    color: #555;
}

.expansion-text {
    font-size: 1.2rem;
    color: #555;
    margin-top: 40px;
    line-height: 1.6;
}

.expansion-text span {
    color: #f59e0b; /* Orange accent */
}

/* --- Responsive for Mobile --- */
@media (max-width: 900px) {
    .shipping-info-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .shipping-column-left h2 {
        text-align: center;
    }
    
    .shipper-logos {
        justify-content: center;
    }

    .shipping-details {
        text-align: center;
    }
    
    .po-box-notice {
        justify-content: center;
    }
}
