/* Общие стили */
:root {
    --primary-color: #6a8caf;
    --secondary-color: #8ebbdb;
    --accent-color: #f0d1b8;
    --text-color: #4a4a4a;
    --light-color: #f9f9f9;
    --dark-color: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #5a7c9f;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #7eabd0;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-call {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-call:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-call i {
    font-size: 0.9rem;
}

/* Шапка */
.header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo h1, .logo h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

.logo__subtitle {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.header__info {
    text-align: center;
    flex: 1;
}

.header__schedule {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.header__address {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

.nav__list {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav__link {
    font-weight: 500;
    position: relative;
}

.nav__link:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav__link:not(.btn):hover::after {
    width: 100%;
}

/* Секция Hero */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero__content {
    flex: 1;
}

.hero__image {
    flex: 1;
    text-align: center;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.2;
}

.hero__text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* О нас */
.about {
    padding: 100px 0;
    background-color: white;
}

.about__inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about__text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about__features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature__icon {
    width: 70px;
    height: 70px;
    background-color: rgba(106, 140, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature__icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature__title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Встречи */
.meetings {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.meetings__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.meetings__image {
    flex: 1;
}

.meetings__content {
    flex: 1;
}

.meetings__list {
    margin-bottom: 30px;
}

.meetings__item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.meetings__item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Команда */
.team {
    padding: 100px 0;
    background-color: white;
}

.team__inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.team-member__photo {
    height: 250px;
    overflow: hidden;
}

.team-member__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .team-member__img {
    transform: scale(1.05);
}

.team-member__name {
    font-size: 1.5rem;
    margin: 20px 20px 5px;
    color: var(--dark-color);
}

.team-member__position {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0 20px 10px;
}

.team-member__description {
    padding: 0 20px 20px;
    color: var(--text-color);
}

/* Отзывы */
.testimonials {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.testimonials__inner {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(106, 140, 175, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial__text {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial__author {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

/* Регистрация */
.register {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0d1b8 0%, #f7e5d7 100%);
}

.register__inner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.register__content {
    flex: 1;
}

.register__text {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.register__list {
    margin-bottom: 30px;
}

.register__item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.register__item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

.register__form-container {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.register__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(106, 140, 175, 0.2);
}

.form-status {
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
}

.form-status.success {
    color: #28a745;
}

.form-status.error {
    color: #dc3545;
}

/* Футер */
.footer {
    padding: 60px 0 20px;
    background-color: #333;
    color: white;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__info {
    flex: 2;
    min-width: 300px;
}

.footer__text {
    margin-top: 20px;
    color: #bbb;
}

.footer__contact, .footer__nav {
    flex: 1;
    min-width: 200px;
}

.footer__title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer__contact-list, .footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__contact-item i {
    color: var(--accent-color);
}

.footer__nav-item a:hover {
    color: var(--accent-color);
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero__inner, .meetings__inner, .register__inner {
        flex-direction: column;
    }
    
    .hero {
        padding: 60px 0;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header__inner {
        flex-direction: column;
        gap: 15px;
    }

    .header__info {
        order: 2;
    }

    .nav {
        order: 3;
    }

    .nav__list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about__inner, .team__inner {
        gap: 40px;
    }

    .feature {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 2rem;
    }

    .register__form-container {
        padding: 25px;
    }
} 