/* Базовые стили */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #f72585;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --success-color: #4bb543;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary-color);
}

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

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

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

section {
    padding: 80px 0;
}

/* Навигация */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    position: relative;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-btn span {
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 3px;
}

/* Герой-секция */
.hero {
    background-color: #f9fafb;
    padding: 100px 0;
}

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

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.hero-image {
    flex: 1;
}

/* Секция особенностей */
.features {
    background-color: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.feature-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Секция программ */
.programs {
    background-color: #f9fafb;
}

.programs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
}

.program-card p {
    padding: 0 20px 20px;
    color: var(--gray-color);
}

.program-card .btn {
    margin: 0 20px 20px;
}

/* Секция превью блога */
.blog-preview {
    background-color: #fff;
}

.blog-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.blog-posts-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-post-card {
    display: flex;
    background-color: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-post-card:hover {
    transform: translateY(-5px);
}

.blog-post-card img {
    width: 40%;
    object-fit: cover;
}

.post-content {
    padding: 20px;
    flex: 1;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.post-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Секция чеклиста */
.checklist-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.checklist-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.checklist-section > .container > p {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.checklist {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.checklist-item input[type="checkbox"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
}

.checklist-item label {
    font-size: 1.1rem;
    cursor: pointer;
}

/* Секция терминологии */
.terminology-section {
    background-color: #fff;
    padding: 80px 0;
}

.terminology-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.terminology-section > .container > p {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.terminology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.term-card {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.term-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.term-card p {
    color: var(--gray-color);
}

/* Секция отзывов */
.testimonials {
    background-color: #f9fafb;
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray-color);
}

/* Футер */
footer {
    background-color: #212529;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #adb5bd;
}

.footer-links h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #adb5bd;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-contact p {
    color: #adb5bd;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #343a40;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #343a40;
}

.footer-bottom p {
    color: #adb5bd;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin-right: 20px;
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-settings, .btn-decline {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-settings {
    background-color: #6c757d;
    color: white;
}

.btn-settings:hover {
    background-color: #5a6268;
}

.btn-decline {
    background-color: transparent;
    color: #6c757d;
    border: 1px solid #6c757d;
}

.btn-decline:hover {
    background-color: #f8f9fa;
}

/* Страница блога */
.page-banner {
    background-color: #f9fafb;
    padding: 60px 0;
    text-align: center;
}

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

.page-banner p {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 800px;
    margin: 0 auto;
}

.blog-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.blog-post {
    display: flex;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-image {
    flex: 1;
    min-width: 300px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    flex: 2;
    padding: 30px;
}

.post-meta {
    display: flex;
    margin-bottom: 15px;
    color: var(--gray-color);
    flex-wrap: wrap;
}

.post-meta span {
    margin-right: 20px;
}

.blog-sidebar {
    flex: 1;
    min-width: 250px;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sidebar-widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-posts {
    margin-top: 20px;
}

.popular-post {
    display: flex;
    margin-bottom: 15px;
}

.popular-post:last-child {
    margin-bottom: 0;
}

.popular-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.popular-post h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.popular-post span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.subscribe-form {
    margin-top: 20px;
}

.subscribe-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Страница отдельного поста */
.single-post .container {
    max-width: 1000px;
}

.post-header {
    text-align: center;
    margin-bottom: 30px;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content-wrapper {
    display: flex;
    gap: 40px;
}

.post-content {
    flex: 3;
}

.post-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul, .post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content img {
    border-radius: 8px;
    margin: 20px 0;
}

.post-sidebar {
    flex: 1;
    min-width: 250px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags a {
    display: inline-block;
    background-color: #f9fafb;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    gap: 20px;
}

.post-nav-prev, .post-nav-next {
    flex: 1;
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.post-nav-prev:hover, .post-nav-next:hover {
    background-color: #eee;
}

.post-nav-prev {
    text-align: left;
}

.post-nav-next {
    text-align: right;
}

.post-nav-prev span, .post-nav-next span {
    display: block;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.post-nav-prev h4, .post-nav-next h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.post-comments {
    margin-top: 50px;
}

.post-comments h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
}

.comment-avatar {
    margin-right: 20px;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-meta h4 {
    margin-bottom: 0;
}

.comment-meta span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.reply-btn {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

.leave-comment {
    margin-top: 50px;
}

.leave-comment h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

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

.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.comment-form textarea {
    resize: vertical;
}

/* Страница О нас */
.about-story, .our-mission {
    background-color: #fff;
}

.about-content, .mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text, .mission-text {
    flex: 1;
}

.about-image, .mission-image {
    flex: 1;
}

.about-text h2, .mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-text p, .mission-text p {
    margin-bottom: 20px;
}

.our-approach {
    background-color: #f9fafb;
}

.our-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.approach-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.approach-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.our-team {
    background-color: #fff;
}

.our-team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--gray-color);
}

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

.team-member {
    background-color: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 20px 5px;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-member p {
    padding: 0 20px;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.team-member p:nth-of-type(1) {
    font-weight: 600;
    color: var(--primary-color);
}

.member-social {
    display: flex;
    padding: 0 20px 20px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #eee;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--gray-color);
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.cta-section .btn-primary:hover {
    background-color: var(--light-color);
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Страница контактов */
.contact-info {
    background-color: #f9fafb;
}

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

.contact-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 5px;
}

.text-muted {
    color: var(--gray-color);
}

.contact-form-section {
    background-color: #fff;
}

.contact-form-wrapper {
    display: flex;
    gap: 50px;
}

.form-content {
    flex: 1;
}

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.form-content p {
    margin-bottom: 30px;
    color: var(--gray-color);
}

.contact-form {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.map-container {
    flex: 1;
}

.map-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.map {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-info p {
    margin-bottom: 10px;
}

.faq-section {
    background-color: #f9fafb;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 600;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you-message h2 {
    margin-bottom: 15px;
}

.thank-you-message p {
    margin-bottom: 30px;
}

/* Медиа-запросы */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .features-grid, .program-cards, .blog-posts-preview, .terminology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .post-image {
        min-width: auto;
    }
    
    .about-content, .mission-content, .contact-form-wrapper {
        flex-direction: column;
    }
    
    .about-text, .mission-text {
        order: 1;
    }
    
    .about-image, .mission-image {
        order: 0;
        margin-bottom: 30px;
    }
    
    .approach-grid, .team-grid, .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .post-content-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .features-grid, .program-cards, .blog-posts-preview, .terminology-grid, .approach-grid, .team-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .about-text h2, .mission-text h2, .cta-content h2, .form-content h2, .map-container h2 {
        font-size: 2rem;
    }
}
