.page-title {
    color: #2e7d32;
    text-align: center;
    margin: 30px 0;
}

.contacts-content {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.contact-info {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: #2e7d32;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    margin-right: 15px;
}

.contact-details p:first-child {
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
}

.social-contacts {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.social-contacts h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    padding: 8px 15px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.social-link:hover {
    background: #2e7d32;
    color: white;
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #2e7d32;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-submit:hover {
    background: #1b5e20;
}



/* Адаптивность */
@media (max-width: 768px) {
    .contacts-content {
        flex-direction: column;
    }
}