/* Main Content */
main {
    padding: 3rem 0;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form-section h2 {
    color: #2c1810;
    margin-bottom: 1rem;
}

.contact-form-section > p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    font-weight: bold;
    color: #2c1810;
    font-size: 0.95rem;
}

.required {
    color: #d32f2f;
    margin-left: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: #f4a460;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button[type="submit"] {
    background-color: #f4a460;
    color: #2c1810;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #e09450;
}

button[type="submit"]:active {
    transform: translateY(1px);
}

/* Contact Info Section */
.contact-info-section {
    background-color: #2c1810;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-section h2 {
    color: #f4a460;
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.info-item-icon {
    font-size: 1.5rem;
    color: #f4a460;
}

.info-item-content h3 {
    color: #f4a460;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.info-item-content p {
    color: #ddd;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}