.shipping-hero {
    padding: 180px 20px 100px;
    color: white;
    text-align: center;
}

.shipping-hero small {
    letter-spacing: 3px;
    opacity: .8;
    color: #06298b;
}

.shipping-hero h1 {
    font-size: 72px;
    margin: 20px 0;
    color: #06298b;
}

.shipping-hero p {
    max-width: 700px;
    margin: auto;
    color: #06298b;
}
.header{
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.header .icons svg{
    stroke: #06298b;
}
.header .menu a{
    color: #06298b;
}
.info-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon svg {
    width: 42px;
    height: 42px;
    color: #06298b;
}

.info-card h2 {
    margin-bottom: 25px;
}

.shipping-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.shipping-item strong,
.shipping-item span {
    display: grid;
    gap: 4px;
}

.shipping-item span {
    text-align: right;
}

.shipping-item small {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.delivery-box {
    background: #eef3fb;
    padding: 50px;
    border-radius: 24px;
    margin-top: 40px;
}

.delivery-box h2 {
    margin-bottom: 20px;
}

.delivery-box ul {
    margin-top: 20px;
    padding-left: 20px;
}

.delivery-box li {
    margin-bottom: 10px;
}

.benefits-row {
    margin-top: 50px;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 25px;
}

.benefit-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.benefit-card svg {
    width: 40px;
    height: 40px;
    color: #06298b;
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

@media (max-width: 768px) {

    .shipping-hero {
        padding: 140px 20px 70px;
    }

    .shipping-hero h1 {
        font-size: 42px;
    }

    .info-grid {
        grid-template-columns:1fr;
    }

    .benefits-row {
        grid-template-columns:1fr;
    }

    .delivery-box {
        padding: 30px;
    }

    .info-card {
        padding: 30px;
    }
}
