
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}



.contact-wrapper {
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.description {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.reach-us {
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.email {
    font-size: 1.25rem;
    color: #444;
}

.form-group {
    margin-bottom: 1rem;
}

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: #999;
}

.select-container {
    position: relative;
}

.select-container::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #dc2626;
    pointer-events: none;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    cursor: pointer;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-note {
    font-size: 0.875rem;
    color: #777;
    margin-bottom: 1.5rem;
}

.form-submit {
    text-align: right;
}



/* Responsive styles */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    h1 {
        font-size: 2rem;
    }
}