.location-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.location-intro {
    text-align: center;
    margin-bottom: 60px;
}

.location-intro h2 {
    font-family: var(--accent-font-family);
    font-style: var(--accent-font-style);
    font-weight: var(--accent-font-weight);
    text-transform: var(--accent-text-transform);
    letter-spacing: var(--accent-letter-spacing);
    font-size: 2.5rem;
    color: #0f1f0f;
    margin-bottom: 20px;
}

.location-intro p {
    font-size: 1.2rem;
    color: #4a5a4a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px 0;
}

.location-info {
    background: #f9fbf9;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(15, 31, 15, 0.1);
}

.location-info h3 {
    font-size: 1.8rem;
    color: #0f1f0f;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.info-section {
    margin-bottom: 30px;
}

.info-section h4 {
    font-size: 1.2rem;
    color: #4b7a4b;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-section p {
    font-size: 1.1rem;
    color: #2a3a2a;
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-section a {
    color: #4b7a4b;
    text-decoration: none;
    font-weight: 500;
}

.info-section a:hover {
    text-decoration: underline;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.hours-table th,
.hours-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e8f0e8;
}

.hours-table th {
    background: #f4f9f4;
    font-weight: 600;
    color: #0f1f0f;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hours-table td {
    color: #4a5a4a;
    font-size: 1rem;
}

.map-container {
    background: #f9fbf9;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(15, 31, 15, 0.1);
    text-align: center;
}

.map-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(15, 31, 15, 0.1);
}

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

.directions {
    margin-top: 30px;
}

.directions h4 {
    font-size: 1.2rem;
    color: #4b7a4b;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.directions ul {
    list-style: none;
    padding: 0;
}

.directions li {
    padding: 8px 0;
    color: #4a5a4a;
    font-size: 1rem;
    line-height: 1.5;
}

.directions li:before {
    content: "→";
    color: #4b7a4b;
    font-weight: bold;
    margin-right: 10px;
}


@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
}
