/* overview.css */

.overview-content {
    margin-top: 40px;
}

.overview-header {
    margin-bottom: 50px;
}

.overview-title {
    font-size: 48px;
    color: #0ABAB5;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.overview-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #0ABAB5;
}

.overview-grid {
    display: flex;
    gap: 60px;
}

.overview-col {
    display: flex;
    flex-direction: column;
}

.overview-col:first-child {
    flex: 3;
}

.overview-col:last-child {
    flex: 6;
}

.overview-item {
    display: flex;
    padding: 15px 0;
}

.overview-item:first-child {
    padding-top: 0;
}

.overview-label {
    width: 120px;
    flex-shrink: 0;
    color: #0ABAB5;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
}

.overview-value {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

@media (max-width: 991px) {
    .overview-grid {
        flex-direction: column;
        gap: 0;
    }

    .overview-item {
        padding: 15px 0;
    }
    
    .overview-item:first-child {
        padding-top: 15px;
    }
    
    .overview-col:first-child .overview-item:first-child {
        padding-top: 0;
    }
}

.access-section {
    margin-top: 100px;
}

.access-title {
    font-size: 24px;
    color: #0ABAB5;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.access-info {
    margin-bottom: 40px;
}

.access-info p {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.access-info p:last-child {
    margin-bottom: 0;
}

.access-map img {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    object-fit: cover;
}
