/* Shipping Policy */
.shipping-policy-page {
    padding: 80px 0 60px 0;
}

.page-title{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.shipping-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.shipping-content {
    background: #fff;
    border-radius: 16px;
}

.shipping-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e0e0e0;
}

.shipping-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.shipping-section h2 {
    font-size: 20px;
    color: var(--title-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.shipping-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.shipping-section ul {
    margin: 12px 0;
    padding-left: 22px;
}

.shipping-section li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 6px;
}

.shipping-section a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.shipping-section a:hover {
    color: var(--secondary-hover-color);
    text-decoration: underline;
}

.shipping-logo-group {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.shipping-logo-group img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.shipping-logo-group .fedex{
    height: 65px;
}

.shipping-logo-group .ups{
    height: 65px;
}