
.contacts-page {
    padding: 40px 0;
}

.contact-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.contact-section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.contact-item-title {
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 10px;
}

.contact-item-note {
    color: #6b7280;
    font-size: 14px;
    margin-top: 5px;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info ul {
    list-style: disc;
    margin-left: 25px;
    line-height: 1.8;
}

.contact-form {
    max-width: 560px;
}

.contact-form-field {
    margin-bottom: 18px;
}

.contact-form-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #2c3e50;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.contact-form-error {
    min-height: 18px;
    margin-top: 4px;
    font-size: 13px;
    color: #e74c3c;
}

.contact-form-btn {
    padding: 12px 32px;
    background-color: #ff6b35;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form-btn:hover {
    background-color: #e55a2b;
}

.contact-form-status {
    min-height: 22px;
    margin-top: 14px;
    font-size: 14px;
}

.contact-form-status.success {
    color: #27ae60;
}

.contact-form-status.error {
    color: #e74c3c;
}

