*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Figtree, sans-serif;
    background-color: #ffdf06;
    color: #000000;
    line-height: 1.6;
}

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

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    max-width: 200px;
    height: auto;
}

.header p {
    font-size: 1.2rem;
}

.operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.operator-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.operator-card:hover {
    transform: translateY(-5px);
}

.operator-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.operator-card a {
    display: inline-block;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #000000;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.operator-card a:hover {
    background-color: #000000;
    color: #FFD700;
}

.contact-section {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
}

.form-group input,
.form-group select {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-group .label-header {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.checkbox-options,
.radio-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.terms-checkbox {
    margin-top: 1rem;
}

.terms-checkbox a {
    color: #0066cc;
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

.contact-form button {
    background-color: #000000;
    color: #FFD700;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
}

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

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.checkbox-group.error .label-header {
    color: #dc3545;
}

.checkbox-group.error .checkbox-options {
    border: 1px solid #dc3545;
    border-radius: 5px;
    padding: 0.5rem;
}

textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 300px;
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.char-counter {
    display: block;
    text-align: right;
    color: #666;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .header h1 {
        font-size: 2rem;
    }

    .operator-card {
        padding: 1.5rem;
    }

    .contact-section {
        padding: 1rem;
    }
}

.error-message, #operator-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.error-message {
    display: block;
}

#operator-error{
    display: none;
}

.form-group input.has-error,
.form-group select.has-error,
.form-group textarea.has-error {
    border-color: #dc3545;
}


.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    50% { transform: translateX(8px); }
    75% { transform: translateX(-8px); }
    100% { transform: translateX(0); }
}