* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    padding: 100px 0 0 0;

}

h1,
h2,
h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    width: 100%;
    text-align: center;
    font-size: 20px;
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.back-home-map {
    margin-bottom: 15px;
    text-align: left;
}

.home-button {
    display: inline-block;
    background-color: #2d6a4f;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.home-button:hover {
    background-color: #40916c;
    transform: scale(1.05);
}

.tam {
    margin-top: 10px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1000px;
    margin: auto;
    padding: 40px;
    text-align: center;
}

.form-section h2 {
    margin-bottom: 15px;
    font-size: 24px;
}

.form-section p {
    margin-bottom: 20px;
    line-height: 1.5;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

form button {
    background-color: #00a651;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

form button:hover {
    background-color: #008f47;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.icon {
    margin-right: 10px;
    font-size: 18px;
}

iframe {
    margin: 10px 100px 100px 10px;
}

/* location button and output */
.location-section {
    margin: 20px auto;
    text-align: center;
}

.location-btn {
    /* gradient background for a modern look */
    background: linear-gradient(45deg, #0056b3, #007bff);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.location-btn .btn-icon {
    font-size: 18px;
    line-height: 1;
}

.location-btn:hover {
    background: linear-gradient(45deg, #007bff, #3399ff);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#demo {
    margin-top: 10px;
    font-weight: bold;
    font-size: 15px;
}