.dr-section {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.dr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.dr-header {
    margin-bottom: 30px;
}

.dr-header h2 {
    font-size: 32px;
    color: #0b1c39;
    margin-bottom: 10px;
}

.dr-header h2 span {
    color: #df0617;
}

/* Table Design */
.dr-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.dr-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.dr-table thead tr {
    background-color: #df0617;
    color: #ffffff;
    text-align: left;
}

.dr-table th, .dr-table td {
    padding: 15px 20px;
    border: 1px solid #eeeeee;
}

.dr-table th {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}

.dr-table tbody tr {
    transition: background-color 0.3s ease;
}

/* Zebra Striping */
.dr-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover Effect */
.dr-table tbody tr:hover {
    background-color: #fff5f5;
    cursor: default;
}

.dest-name {
    font-weight: 600;
    color: #0b1c39;
}

.price {
    font-weight: 500;
    color: #333;
}


@media (max-width: 768px) {
    .dr-header h2 {
        font-size: 26px;
    }
    
    .dr-table th, .dr-table td {
        padding: 12px 10px;
        font-size: 14px;
    }
}



.dr-details {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px 200px;
    border-radius: 12px;
}


.dr-detail-box h3 {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 21px;
}

.dr-list li {
    font-size: 14.5px;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.dr-list li strong {
    color: #0b1c39;
    font-weight: 600;
}

/* Important Notes Box */
.dr-important-notes {
    background-color: #fff9f9;
    border-left: 4px solid #df0617;
    padding: 20px;
    margin-top: 30px;
}

.dr-important-notes h4 {
    color: #df0617;
    margin-bottom: 15px;
    font-size: 18px;
}

.dr-note-list {
    padding-left: 20px;
    color: #555;
    font-size: 13.5px;
}

.dr-note-list li {
    margin-bottom: 8px;
}

.dr-peak-warning {
    margin-top: 15px;
    font-weight: bold;
    color: #df0617;
    font-size: 15px;
}