/* Shipping Policy Styles */
.shipping-policy-area {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.page-title {
    margin-bottom: 60px;
}

.page-title h1 {
    color: #231942;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-title .lead {
    color: #666;
    font-size: 18px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #364958;
    text-align: center;
    margin-bottom: 50px;
}

/* Shipping Info Cards */
.shipping-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.info-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card .icon {
    background: #FF6565;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.info-card .icon i {
    color: #fff;
    font-size: 28px;
    transition: all 0.3s ease;
}

.info-card:hover .icon i {
    transform: scale(1.1);
}

.info-card .content h3 {
    color: #231942;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-card .content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* No Refund Policy Section */
.no-refund-policy {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.alert-icon {
    width: 60px;
    height: 60px;
    background: #FF6565;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.alert-icon i {
    color: #fff;
    font-size: 36px;
    transition: all 0.3s ease;
}

.no-refund-policy:hover .alert-icon i {
    transform: scale(1.1);
}

.no-refund-policy h2 {
    color: #231942;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.policy-text p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shipping-policy-area {
        padding: 60px 0;
    }

    .page-title h1 {
        font-size: 32px;
    }

    .info-card {
        padding: 20px;
    }

    .no-refund-policy {
        padding: 30px 20px;
    }
} 