/* Cancellation page specific styles */
.cancellation-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.cancellation-hero h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cancellation-hero p {
    font-size: 1.2rem;
    color: #666;
}

.cancellation-content {
    margin-top: 2rem;
}

.cancellation-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;
}

.cancellation-section h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 0.5rem;
}

.cancellation-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cancellation-section p:last-child {
    margin-bottom: 0;
}

.cancellation-list {
    color: #555;
    line-height: 1.8;
    margin-left: 1rem;
}

.cancellation-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0.5rem;
}

.cancellation-list li:before {
    content: "•";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* Cancellation steps styles */
.cancellation-steps {
    margin-top: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #27ae60;
}

.step-number {
    background-color: #27ae60;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Charges table styles */
.charges-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) {
    .cancellation-hero {
        padding: 1.5rem;
    }
    
    .cancellation-hero h2 {
        font-size: 1.5rem;
    }
    
    .cancellation-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .cancellation-section h3 {
        font-size: 1.1rem;
    }
    
    .cancellation-list {
        margin-left: 0.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .step-content {
        text-align: left;
    }
    
    .table-cell {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .charges-table {
        font-size: 0.9rem;
    }
}

/* Print styles */
@media print {
    .cancellation-section {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .cancellation-hero {
        background-color: transparent !important;
        box-shadow: none;
    }
    
    .step-item {
        background-color: transparent !important;
        border: 1px solid #ddd;
    }
    
    .charges-table {
        box-shadow: none;
    }
}