.intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.6;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.contact-form,
.contact-info {
    max-width: 100%;
    /* Ensures full width within the container */
}

.contact-info h2,
.contact-form h2 {
    color: #e6b980;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.subtitle {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.contact-info ul {
    list-style-type: none;
    padding: 0;
}

.contact-info ul li,
.contact-info address {
    margin-bottom: 10px;
    line-height: 1.6;
}

.map {
    margin-top: 20px;
}

.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

.form-intro {
    margin-bottom: 20px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #e6b980;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #d4a76a;
    transform: translateY(-2px);
}

.subtitle {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
}

.submit-btn.success {
    background-color: #4CAF50;
}