
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.back-nav {
    margin-bottom: 30px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a3a5f;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #ffd700;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.consultation-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 32px;
    color: black;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 600;
    color: black;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: black;
    box-shadow: 0 0 0 3px rgba(26, 58, 95, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.additional-info {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.additional-info h3 {
    color: black;
    margin-bottom: 15px;
    font-size: 18px;
}

.submit-btn {
    width: 100%;
    background: #ffd700;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.submit-btn:hover {
    background: #0f2842;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 95, 0.3);
}

.privacy-notice {
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    line-height: 1.5;
}

.info-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 28px;
    color: black;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #495057;
}

.contact-item i {
    color: black;
    margin-right: 10px;
    width: 20px;
}

.business-hours {
    margin: 25px 0;
}

.hours-title {
    font-weight: 600;
    color: #1a3a5f;
    margin-bottom: 10px;
}

.global-offices {
    margin: 30px 0;
}

.offices-title {
    font-weight: 600;
    color: black;
    margin-bottom: 15px;
    font-size: 18px;
}

.office-item {
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 3px solid #ffd700;
}

.office-city {
    font-weight: 600;
    color: black;
    margin-bottom: 5px;
}

.office-address {
    color: #6c757d;
    font-size: 14px;
}

.expectations {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.expectations h3 {
    color: black;
    margin-bottom: 15px;
    font-size: 18px;
}

.expectation-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #495057;
}

.expectation-item i {
    color: #28a745;
    margin-right: 10px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .consultation-section,
    .info-section {
        padding: 25px;
    }

    .section-title {
        font-size: 28px;
    }

    .info-title {
        font-size: 24px;
    }
}