/* Contact Page Unique Layout adapted for www-website */
:root {
    --primary-color: #000000;
    --accent-blue: #4586FF;
    --text-main: #242424;
    --text-muted: #859196;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
}

.contact-form-container {
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    text-align: left;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #E1E4E8;
    border-radius: 8px;
    background: #F8F9FA;
    margin-bottom: 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(69, 134, 255, 0.1);
}

.required-mark {
    color: #e53935;
    margin-left: 4px;
    font-size: 0.9em;
}

.privacy-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.privacy-content {
    height: 120px;
    overflow-y: auto;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #ced4da #f8f9fa;
}

.privacy-content::-webkit-scrollbar {
    width: 6px;
}

.privacy-content::-webkit-scrollbar-thumb {
    background-color: #ced4da;
    border-radius: 3px;
}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-main);
}

.privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

.cf-turnstile {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #1265ff;
    transform: translateY(-2px);
}
