/* Visit Container - Two Column Layout */
.page-header {
    background-color: #5387c4;
    color: white;
    text-align: center;
    padding: 2.2rem;
    margin-top: 20px;
}
.page-header h1 {
    margin: 5.5rem 0 0 0;
    font-size: 2.5rem;
}

.visit-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

/* Visit Box - Common Styles */
.visit-box {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.visit-box h2 {
    color: #5387c4;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 25px;
}

.visit-box h3 {
    color: #333;
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Address Box (Left Column) */
.address-box {
    display: flex;
    flex-direction: column;
}

.address-info p,
.contact-info p,
.transport-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.address-info {
    background-color: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
   
}

.contact-info,
.transport-info {
    background-color: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.contact-info h3,
.transport-info h3 {
    margin-top: 0;
    color: #5387c4;
    font-size: 1.2rem;
}

/* Map Box (Right Column) */
.map-box {
    display: flex;
    flex-direction: column;
}

/* Opening Hours */
.opening-hours {
    background-color: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
 
}

.opening-hours h3 {
    margin-top: 0;
    color: #5387c4;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.hours-row .time {
    color: #555;
    font-size: 1rem;
}

/* Map Embed */
.map-embed {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .visit-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .visit-box {
        padding: 30px 20px;
    }
    
    .visit-box h2 {
        font-size: 1.6rem;
    }
    
    .map-embed iframe {
        height: 350px;
    }
    
    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}