/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary-blue: #2998FF;
    --dark-blue: #1b64a7;
    --white: #ffffff;
    --text-dark: #333333;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ABD7FF;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Общие компоненты */
.full-width-nav {
    background-color: var(--white);
    box-shadow: var(--shadow);
    margin: 15px;
    border-radius: var(--border-radius);
}

.content-container {
    background-color: var(--white);
    box-shadow: var(--shadow);
    margin: 15px;
    padding: 15px;
    border-radius: var(--border-radius);
}

/* Навигация */
nav {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2px; 
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 10px;
    width: 100%;
}

.nav-list li {
    flex: 0 0 auto;
    margin: 8px; 
}

.nav-btn {
    display: inline-block;
    padding: 12px 5px;
    width: 215px;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.nav-btn:hover {
    background-color: var(--dark-blue);
}

.hero-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 0 10px;
    margin: 15px auto;
    width: 100%;
    height: 300px;
    max-width: 1160px;
    border-radius: var(--border-radius);
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.section-title-white {
    color: var(--primary-blue);
    font-size: 54px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 50px;
}

.hero-content {
    text-align: left;
    margin: 10px;
}

.hero-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 5px;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 20px;
}

.hero-button {
    padding: 15px 30px;
    background-color: var(--white);
    color: var(--primary-blue);
    border: none;
    margin: 15px 0 0 0;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.hero-button:hover {
    background-color: #e6f2ff;
    transform: scale(1.05);
}

/* franchise.css - Стили только для страницы франшизы */

/* Основная кнопка франшизы */

.franchise-main-button {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.franchise-main-button:hover {
    background-color: var(--dark-blue);
    transform: scale(1.02);
}

/* Преимущества франшизы */
.franchise-advantages .program-card {
    min-height: 280px;
}

/* Описание франшизы */
.franchise-description {
    margin: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.description-text {
    flex: 0 0 60%;
}

.big-text {
    font-size: 54px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.medium-text {
    font-size: 32px;
    color: var(--text-dark);
}

/* Статистика */
.franchise-stats {
    flex: 0 0 35%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    background-color: var(--primary-blue);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 18px;
}

/* Карта */
.franchise-map {
    margin: 50px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Кнопка покупки */
.franchise-buy-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.franchise-buy-button:hover {
    background-color: var(--dark-blue);
    transform: scale(1.02);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .franchise-description {
        flex-direction: column;
    }

    .franchise-stats {
        margin-top: 40px;
        width: 100%;
    }

    .big-text {
        font-size: 42px;
    }

    .medium-text {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .big-text {
        font-size: 36px;
    }

    .medium-text {
        font-size: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 16px;
    }

    .franchise-stats {
        grid-template-columns: 1fr;
    }
}
