* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.address {
    text-align: left;
}

.address h3 {
    margin-bottom: 10px;
}

.address p {
    margin-bottom: 8px;
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.location {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.location h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.location-info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.location-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff6600;
}

.location-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.location-info a {
    color: #ff6600;
    text-decoration: none;
}

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

.location-map {
    flex: 2;
    min-width: 300px;
    max-width: 700px;
}

.location-map iframe {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}