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

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.map-container {
    width: 100%;
    height: 450px;
    margin-bottom: 2rem;
}

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

.contact-page {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-page-title {
    font-size: 2.5rem;
    color: #0acad1;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-description {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #f5deb3;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #0acad1;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: #0acad1;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
span{
    color: red;
    font-weight: bold;
}
.submit-btn:hover {
    background-color: #08b6bc;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .contact-page-title {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-page-title {
        font-size: 1.75rem;
    }

    .contact-description {
        font-size: 0.8rem;
    }

    .submit-btn {
        width: 100%;
    }
}