/* Основные стили сайта о лабрадорах */
:root {
    --primary-color: #f5a623;
    --secondary-color: #8B4513;
    --dark-color: #333333;
    --light-color: #f8f5f0;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --warning: #e74c3c;
    --info: #3498db;
    --success: #2ecc71;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

section {
    padding: 60px 0;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.bg-light {
    background-color: var(--light-color);
}

.bg-dark {
    background-color: var(--dark-color);
    color: var(--white);
}

/* Навигация */
.menu-checkbox {
    display: none;
}

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.4rem;
}

.logo i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.nav-text {
    display: inline-block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle i {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.menu-toggle i.fa-times {
    display: none;
}

.menu-checkbox:checked ~ .navbar .menu-toggle i.fa-bars {
    display: none;
}

.menu-checkbox:checked ~ .navbar .menu-toggle i.fa-times {
    display: block;
}

/* Герой-секция */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/home.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: -80px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Кнопки */
.btn, .btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

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

.btn:hover {
    background-color: #e69500;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.text-center {
    text-align: center;
}

/* Основной контент */
.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

/* Выделенные блоки */
.highlight-box {
    background-color: var(--light-color);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: var(--border-radius);
}

.highlight-box h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.highlight-box.warning {
    border-left-color: var(--warning);
}

.highlight-box.warning h3 {
    color: var(--warning);
}

/* Страница заголовок */
.page-header {
    padding: 120px 0 50px;
    text-align: center;
    background-color: var(--light-color);
    margin-top: -80px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Навигация страниц */
.page-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--light-color);
    gap: 20px;
}

/* Карточки и сетки */
.image-text-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 30px 0;
}

.image-text-block img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Специальные стили для изображений на разных страницах */

/* Главная страница - изображение в разделе истории */
.history-preview .history-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Главная страница - изображение в разделе "О породе" */
.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Страница героических историй - изображения в историях */
.story-content .story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Страница героических историй - мемориальное изображение */
.memorial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Общие стили для изображений в контент-блоках */
.content-block img:not([class]) {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 20px 0;
}

.character-traits,
.care-tips,
.training-methods,
.behavior-list,
.health-issues,
.activity-recommendations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.trait,
.care-tip,
.training-method,
.behavior-item,
.health-issue,
.activity {
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.trait:hover,
.care-tip:hover,
.training-method:hover {
    transform: translateY(-5px);
}

.trait h3,
.care-tip h3,
.training-method h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -23px;
    top: 7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--white);
}

.timeline-item h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

/* Списки */
.content-block ul {
    list-style-type: none;
    margin: 20px 0;
}

.content-block li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.content-block li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* История героев */
.story-block {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-color);
}

.story-header {
    margin-bottom: 25px;
}

.story-header h2 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.story-meta {
    display: flex;
    gap: 25px;
    color: var(--text-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.story-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}

.memorial-section {
    margin: 50px 0;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.memorial-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    align-items: center;
    margin: 25px 0;
}

.quote {
    margin: 30px auto;
    padding: 25px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    max-width: 600px;
}

.quote p {
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}

.quote cite {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Политика конфиденциальности */
.privacy-article {
    margin-bottom: 35px;
}

.privacy-article h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

.contacts-card {
    margin: 20px 0;
    padding: 25px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.contact-item i {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Главная страница */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 35px 0;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.history-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.feature {
    text-align: center;
    padding: 25px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.usage-card {
    text-align: center;
    padding: 25px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.usage-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.usage-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-container {
    #display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Футер */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c2c 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    align-items: start;
}

.brand-icon .logo {
    display: block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ffcc00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.brand-icon .logo:hover {
    transform: translateY(-3px) scale(1.05);
}

.brand-icon .logo i {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-right: 0px;
}

.brand-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--primary-color), #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text .description {
    color: #ddd;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.brand-text .mission {
    color: #aaa;
    font-style: italic;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.nav-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(245, 166, 35, 0.3);
}

.nav-column ul {
    list-style: none;
}

.nav-column li {
    margin-bottom: 10px;
}

.nav-column a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    transition: var(--transition);
    font-size: 0.9rem;
}

.nav-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.nav-column a i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.metrics-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ddd;
    font-size: 0.9rem;
}

.metrics-info i {
    color: var(--primary-color);
}

.privacy-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.privacy-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
    text-decoration: none;
    padding: 12px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(52, 152, 219, 0.2);
    transition: var(--transition);
    font-size: 0.9rem;
}

.privacy-btn:hover {
    background: rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.3);
}

.privacy-btn i {
    color: #3498db;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #aaa;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.copyright .rights {
    color: #888;
    font-size: 0.8rem;
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: #ffcc00;
}

.footer-stats {
    display: flex;
    gap: 25px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.stat-icon {
    width: 30px;
    height: 30px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.stat-text {
    color: #ccc;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .features,
    .usage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .history-preview,
    .contact-container,
    .story-content,
    .memorial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .character-traits,
    .care-tips,
    .training-methods,
    .behavior-list,
    .health-issues,
    .activity-recommendations {
        grid-template-columns: 1fr;
    }
    
    .page-navigation {
        flex-direction: column;
    }
    
    /* Адаптивность для изображений */
    .history-preview .history-image img,
    .about-image img {
        height: 300px;
    }
    
    .story-content .story-image img {
        height: 250px;
    }
    
    .memorial-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        box-shadow: var(--shadow);
        transition: var(--transition);
        padding: 20px;
        gap: 0;
        z-index: 999;
    }
    
    .menu-checkbox:checked ~ .navbar .nav-menu {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--light-color);
        width: 100%;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hero {
        padding: 100px 0 60px;
        margin-top: -70px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
        margin-top: -70px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .image-text-block {
        grid-template-columns: 1fr;
    }
    
    .features,
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-stats {
        flex-direction: column;
        width: 100%;
    }
    
    .stat {
        justify-content: center;
        width: 100%;
    }
    
    /* Адаптивность для изображений */
    .history-preview .history-image img,
    .about-image img {
        height: 250px;
    }
    
    .story-content .story-image img {
        height: 200px;
    }
    
    .memorial-image img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn, .btn-outline {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-container {
        padding: 25px;
        gap: 30px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline:before {
        left: 5px;
    }
    
    .timeline-item:before {
        left: -18px;
    }
    
    /* Адаптивность для изображений */
    .history-preview .history-image img,
    .about-image img {
        height: 200px;
    }
    
    .story-content .story-image img {
        height: 180px;
    }
    
    .memorial-image img {
        height: 200px;
    }
}






















/* Стили для формы контактов */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.2);
}

.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.form-note {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-note i {
    color: var(--primary-color);
}

/* Стили для состояния загрузки */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}















/* Стили для Telegram-секции */
.telegram-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
    border-radius: 20px;
    margin-top: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.6;
}

/* Карточка Telegram */
.telegram-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 91, 187, 0.12);
    border: 1px solid rgba(0, 91, 187, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.telegram-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 91, 187, 0.18);
}

.telegram-card__icon {
    font-size: 5rem;
    color: #0088cc;
    margin-bottom: 25px;
    background: rgba(0, 136, 204, 0.1);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-card__content {
    text-align: center;
    width: 100%;
}

.telegram-card h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.telegram-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Список преимуществ */
.telegram-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    display: inline-block;
}

.telegram-features li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}

.telegram-features i {
    color: #0088cc;
    width: 25px;
    margin-right: 10px;
}

.telegram-features span {
    vertical-align: middle;
}

/* Кнопка Telegram */
.btn-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
    border: none;
    cursor: pointer;
    min-width: 300px;
}

.btn-telegram:hover {
    background: linear-gradient(135deg, #0099e6 0%, #0077b3 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 136, 204, 0.4);
    color: white;
}

.btn-telegram i {
    font-size: 1.5rem;
}

.telegram-note {
    color: #666;
    font-size: 0.95rem;
    margin-top: 20px;
    font-style: italic;
}

.telegram-note i {
    color: #0088cc;
    margin-right: 8px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .telegram-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .telegram-card__icon {
        width: 90px;
        height: 90px;
        font-size: 3.5rem;
    }
    
    .telegram-card h3 {
        font-size: 1.5rem;
    }
    
    .btn-telegram {
        min-width: auto;
        width: 100%;
        padding: 16px 25px;
    }
    
    .telegram-features {
        text-align: left;
        padding-left: 10px;
    }
}










