/* ========== СТИЛИ ДЛЯ СТРАНИЦЫ О КОМПАНИИ ========== */

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 60px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(230, 80, 32, 0.1);
}

.about-section {
    margin-bottom: 60px;
}

.about-section h3 {
    font-size: 2rem;
    color: #E65020;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.team-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.team-card-full {
    background: #FCF9F5;
    border-radius: 40px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(230, 80, 32, 0.1);
}

.team-card-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(230, 80, 32, 0.15);
}

.team-photo-full {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #E65020, #F3A119);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name-full {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.team-position-full {
    color: #E65020;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.team-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.contacts-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-card-simple {
    background: #FCF9F5;
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(230, 80, 32, 0.1);
}

.contact-card-simple:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 80, 32, 0.3);
}

.contact-icon-simple {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #E65020;
    font-family: 'Inter', sans-serif;
}

.contact-card-simple h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #E65020;
    font-family: 'Inter', sans-serif;
}

.contact-link-simple {
    font-size: 1.1rem;
    color: #1E1E1E;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
}

.contact-link-simple:hover {
    color: #E65020;
}

.contact-address-simple {
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.contact-note {
    margin-top: 8px;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.map-wrapper-simple {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

@media (max-width: 968px) {
    .team-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content {
        padding: 30px 20px;
        border-radius: 40px;
    }
}

@media (max-width: 568px) {
    .team-grid-full {
        grid-template-columns: 1fr;
    }
    .team-photo-full {
        width: 120px;
        height: 120px;
    }
    .contacts-grid-simple {
        gap: 20px;
    }
    .contact-card-simple {
        padding: 25px 20px;
    }
    .map-wrapper-simple iframe {
        height: 250px;
    }
}