.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
}
.contact-page-section .container {
    display: flex;
    justify-content: center;
}
.contact-info-side {
    background: #006039;
    color: white;
    padding: 48px;
    position: relative;
}

.info-header {
    margin-bottom: 40px;
}

.info-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.info-header p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.info-content {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    transition: transform 0.2s ease;
}

.info-item:hover {
    transform: translateX(8px);
}

.info-item svg {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    fill: white;
}
.info-item a {
    color: white;
}
.form-side {
    padding: 48px;
    background: white;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 24px;
    color: #1a1f36;
    margin-bottom: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #006039;
    background: white;
    box-shadow: 0 0 0 4px rgba(88, 80, 236, 0.1);
}

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

.submit-btn {
    background: #006039;
    color: white;
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 80, 236, 0.2);
}

.address {
    margin-top: 40px;
    color: white;
    font-size: 15px;
    line-height: 1.8;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.address strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-side,
    .form-side {
        padding: 32px 24px;
    }
}

.contact-form .is-invalid {
    border: 2px solid red;
}

.contact-form .error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}
