/* Contacts Section */
.section--contacts {
    background-color: #f7f7f7;
    padding: 80px 20px;
}

.section--contacts .section__content {
    max-width: 1000px;
    margin: 0 auto;
}

.contacts-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contacts-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
}

.contact-text h4 {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
    font-weight: 400;
}

.contact-text p {
    font-size: 16px;
    color: #333;
}

.contact-text a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #3679c8;
}

.contacts-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contacts-form h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
}

.contacts-form > p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3679c8;
}

.form-group textarea {
    resize: vertical;
}

.form-btn {
    width: 100%;
    padding: 14px;
    background: #3679c8;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-btn:hover {
    background: #2a5a9a;
}

@media (max-width: 768px) {
    .contacts-container {
        grid-template-columns: 1fr;
    }
}
