/* Price Page */
.escort-prices {
    background-color: #fdf0f5; /* Light magenta background */
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
}

.escort-prices .container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff; /* White container background */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Page Headings */
.escort-prices .section-heading {
    text-align: center;
    color: #6B0034; /* Magenta */
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: bold;
}

.escort-prices p {
    text-align: center;
    color: #6B0034; /* Magenta */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Price Table Styles */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: center;
    font-size: 16px;
}

.price-table thead th {
    background-color: #6B0034; /* Magenta header */
    color: #ffffff; /* White text */
    font-weight: bold;
}

.price-table tbody tr:nth-child(odd) {
    background-color: #fdf0f5; /* Light magenta for alternate rows */
}

.price-table tbody tr:nth-child(even) {
    background-color: #ffffff; /* White for alternate rows */
}

.price-table tbody tr:hover {
    background-color: #FFD6E0; /* Lighter magenta on hover */
    transition: background-color 0.3s ease;
}

.price-table td {
    color: #6B0034; /* Magenta text */
    border: 1px solid #f5d2e0; /* Light border for rows */
    font-weight: normal;
}

.price-table th {
    border: 1px solid #f5d2e0; /* Light border for headers */
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-table th,
    .price-table td {
        font-size: 14px;
        padding: 10px;
    }

    .escort-prices .section-heading {
        font-size: 24px;
    }

    .escort-prices p {
        font-size: 14px;
    }
}
