.opening-times-section {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    width: 90%;
    max-width: 90rem;
    margin: 0 auto;
}

.opening-times-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.days-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.day-card {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f1f8ff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.day-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.day-info {
    margin: 10px 0;
    color: #555;
    font-weight: 600;
}

.day-time {
    margin: 5px 0;
    color: #555;
}

@media (max-width: 768px) {
    .days-container {
        flex-direction: column;
        align-items: center;
    }

    .day-card {
        margin-bottom: 15px;
    }
}
