/* Shipping page specific styles */
.shipping-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.shipping-hero h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.shipping-hero p {
    font-size: 1.2rem;
    color: #666;
}

.shipping-content {
    margin-top: 2rem;
}

.shipping-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #27ae60;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.shipping-section h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 0.5rem;
}

.shipping-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.shipping-section p:last-child {
    margin-bottom: 0;
}

.shipping-list {
    color: #555;
    line-height: 1.8;
    margin-left: 1rem;
}

.shipping-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0.5rem;
}

.shipping-list li:before {
    content: "•";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* Shipping table styles */
.shipping-table {
    margin-top: 1rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.table-row {
    display: flex;
}

.table-row.header {
    background-color: #27ae60;
    color: white;
    font-weight: bold;
}

.table-row:not(.header) {
    background-color: #f8f9fa;
}

.table-row:not(.header):nth-child(even) {
    background-color: #ffffff;
}

.table-cell {
    flex: 1;
    padding: 1rem;
    border-right: 1px solid #dee2e6;
    text-align: center;
}

.table-cell:last-child {
    border-right: none;
}

.table-cell.free {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Contact info section */
/* .contact-info {
    border-left-color: #3498db;
    background-color: #ebf3fd;
} */

/* Responsive design */
@media (max-width: 768px) {
    .shipping-hero {
        padding: 1.5rem;
    }
    
    .shipping-hero h2 {
        font-size: 1.5rem;
    }
    
    .shipping-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .shipping-section h3 {
        font-size: 1.1rem;
    }
    
    .shipping-list {
        margin-left: 0.5rem;
    }
    
    .table-cell {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .shipping-table {
        font-size: 0.9rem;
    }
}

/* Print styles */
@media print {
    .shipping-section {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .shipping-hero {
        background-color: transparent !important;
        box-shadow: none;
    }
    
    .shipping-table {
        box-shadow: none;
    }
}