.contact-form-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.contact-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding-left: 205px;
    padding-right: 125px;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 400px;
    flex-shrink: 0;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.contact-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}

.contact-social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.contact-social-links .social-link {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--teal);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-social-links .social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.contact-social-links .social-link:hover {
    background-color: var(--primary-dark-blue);
}

.contact-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

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

.form-group label.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.form-control {
    padding: 26px 32px;
    border: none;
    border-radius: 26px;
    font-size: 1rem;
    font-family: inherit;
    color: #333333;
    background-color: #F3F6FB;
    transition: background-color 0.3s;
    width: 100%;
    box-sizing: border-box;
    height: auto;
}

.form-control::placeholder {
    color: #666666;
}

.form-control:focus {
    outline: none;
    background-color: #e8edf3;
}

.form-control.error {
    background-color: #ffe6e6;
}

.form-control textarea {
    resize: vertical;
    min-height: 120px;
    height: auto;
}

.error-message {
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: -4px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.submit-btn {
    padding: 21px 8px;
    background-color: var(--primary-dark-blue);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

.submit-btn:hover {
    background-color: #1a4a6b;
}

.submit-btn:active {
    transform: translateY(1px);
}
