/* Location Page Styles */

.content {
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.directions-section {
    background: #fff;
    padding: 40px;
}

.directions-section p {
    font-size: 1em;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.directions-section h3 {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 30px;
    text-decoration: underline;
    color: #000;
}

.directions-section ol {
    margin-left: 20px;
    margin-bottom: 25px;
}

.directions-section li {
    margin-bottom: 12px;
    color: #333;
}

.address-section {
    margin-top: 30px;
}

.address-section p {
    margin-bottom: 10px;
}

.address-section strong {
    font-weight: 700;
    color: #000;
}

.map-section {
    background: #fff;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 968px) {
    .content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }
    
    .directions-section {
        padding: 30px 20px;
    }
}
