 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

 /* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #f9fafb;
    width: 100%;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-data-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #dbeafe;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

.contact-value a {
    color: #0073aa;
    text-decoration: none;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    word-break: break-word;
}

.contact-hours {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

/* Company Data Card */
.company-data-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.company-title {
    font-size: 16px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-line {
    font-size: 15px;
    color: #374151;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-icon {
    color: #3b82f6;
    font-size: 18px;
    width: 20px;
}

.right-column {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 32px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 16px;
    color: #6b7280;
}

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

.checkbox-box {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 16px 32px 16px;
    transition: border-color 0.3s;
    position: relative;
}

.checkbox-box-label {
    position: absolute;
    top: 0;
    left: 16px;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    background: white;
    padding: 0 4px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.checkbox-label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #374151;
    padding: 0;
    background: transparent;
    transform: none;
    pointer-events: auto;
    transition: none;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.checkbox-label span {
    user-select: none;
}

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

.consent-label {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #6b7280;
    padding: 0;
    background: transparent;
    transform: none;
    pointer-events: auto;
    transition: none;
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3b82f6;
    margin-top: 2px;
    flex-shrink: 0;
}

.consent-label span {
    user-select: none;
    flex: 1;
}

label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 400;
    color: #6b7280;
    background: white;
    padding: 0 4px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group:has(textarea) label {
    top: 20px;
    transform: translateY(0);
}

input,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

input:focus + label,
input:not(:placeholder-shown) + label,
textarea:focus + label,
textarea:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #3b82f6;
}

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

.submit-btn {
    width: 100%;
    padding: 14px 32px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #2563eb;
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.success-message {
    display: none;
    padding: 16px;
    background: #dcfce7;
    color: #166534;
    border-radius: 8px;
    margin-top: 16px;
    text-align: center;
    font-weight: 600;
}

.success-message.show {
    display: block;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .right-column {
        padding: 24px;
    }

    .form-title {
        font-size: 24px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}