:root {
    --bg-color: #f5f5ed;
    --primary-color: #ffa44a;
    --dropdown-border: #fd8f20;
    --text-color: #333;
    --border-color: #e0e0d6;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.contact-info p {
    line-height: 1.6;
    color: #555;
}
.email-notice {
    margin: 2rem 0;
}
.email-notice a {
    color: var(--primary-color);
    text-decoration: none;
}
.email-notice .small-text {
    font-size: 0.8rem;
    color: #777;
}
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}
.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    transition: background-color 0.2s;
}
.social-icons a:hover {
    background-color: #e9e9e3;
}

.contact-form {
    display: flex;
    flex-direction: column;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}
.form-group .required {
    color: #e53e3e;
}
.form-group .label-description {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.5rem;
}
input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
    background-color: #fff;
}
input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
textarea {
    resize: vertical;
}
.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.2s;
}
.submit-button:hover {
    background-color: var(--dropdown-border);
}

/* Updated media query for better mobile layout */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 1rem 0;
    }
    .contact-info h1 {
        font-size: 2rem;
    }
}