:root {
    --primary-color: #7FD4C1;
    --primary-dark: #5FB8A3;
    --primary-light: #A8E6D8;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #F0FDFA;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

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

.header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
}

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

.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--primary-dark);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    transition: color 0.3s;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-list a:hover {
    color: var(--primary-dark);
}

.mobile-nav-list li:last-child a {
    border-bottom: none;
}

.hero {
    background: linear-gradient(135deg, rgba(63, 133, 116, 0.8) 0%, rgba(47, 107, 93, 0.8) 100%), url('../images/1.jfif') center/cover no-repeat;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero-about {
    background: linear-gradient(135deg, rgba(63, 133, 116, 0.8) 0%, rgba(47, 107, 93, 0.8) 100%), url('../images/2.jfif') center 30%/cover no-repeat;
}

.hero-courses {
    background: linear-gradient(135deg, rgba(63, 133, 116, 0.8) 0%, rgba(47, 107, 93, 0.8) 100%), url('../images/3.jfif') center/cover no-repeat;
}

.hero-programs {
    background: linear-gradient(135deg, rgba(63, 133, 116, 0.8) 0%, rgba(47, 107, 93, 0.8) 100%), url('../images/4.jfif') center 30%/cover no-repeat;
}

.hero-contact {
    background: linear-gradient(135deg, rgba(63, 133, 116, 0.8) 0%, rgba(47, 107, 93, 0.8) 100%), url('../images/10.jfif') center 30%/cover no-repeat;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #2F6B5D;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

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

.feature-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

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

.feature-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-preview {
    padding: 80px 0;
}

.contact-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-item strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-dark);
}

.contact-map {
    margin-top: 40px;
}

.contact-map h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 24px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.page-section {
    padding: 80px 0;
}

.page-section h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-dark);
    text-align: center;
}

.content-block {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content-block h2 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 28px;
}

.content-block p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.content-block ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.content-block a {
    color: var(--primary-dark);
    text-decoration: none;
}

.content-block a:hover {
    text-decoration: underline;
}

.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-size: 28px;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.contact-details {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-detail a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--primary-dark);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.course-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.course-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 24px;
}

.course-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.programs-list {
    margin-top: 40px;
}

.program-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.program-item h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 24px;
}

.program-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.thank-you-content h1 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer {
    background-color: var(--white);
    padding: 50px 0 20px;
    margin-top: 80px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-dark);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-dark);
}

.footer-disclaimer {
    margin-bottom: 20px;
}

.footer-disclaimer p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright p {
    color: var(--text-light);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    display: none;
    animation: slideUp 0.3s ease-out;
}

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

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

.cookie-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.cookie-content a:hover {
    text-decoration: none;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-btn-accept:hover {
    background-color: #4A9D8A;
}

.cookie-btn-decline {
    background-color: #f5f5f5;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

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

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--bg-color);
}

.faq-question h3,
.faq-question h4 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 18px;
    flex: 1;
}

.faq-question h4 {
    font-size: 16px;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-dark);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.faq-answer ul {
    margin-left: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer ul li {
    margin-bottom: 10px;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.stats-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table,
.achievements-table,
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.achievements-table th,
.schedule-table th {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td,
.achievements-table td,
.schedule-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.comparison-table tr:last-child td,
.achievements-table tr:last-child td,
.schedule-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover,
.achievements-table tr:hover,
.schedule-table tr:hover {
    background-color: var(--bg-color);
}

.comparison-table-section,
.achievements-table-section,
.schedule-section {
    margin-top: 60px;
}

.comparison-table-section h2,
.achievements-table-section h2,
.schedule-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.course-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background-color: var(--bg-color);
    border-radius: 6px;
}

.course-info span {
    color: var(--text-light);
    font-size: 14px;
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background-color: var(--bg-color);
    border-radius: 6px;
}

.program-details span {
    color: var(--text-light);
    font-size: 14px;
}

.course-details-accordion,
.program-details-accordion {
    margin-top: 60px;
}

.course-details-accordion h2,
.program-details-accordion h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.articles-section {
    margin-top: 60px;
}

.articles-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.article-card h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 20px;
}

.article-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.article-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.article-link:hover {
    color: var(--primary-color);
}

.contact-faq {
    margin-top: 30px;
}

.contact-faq h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 24px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .thank-you-content {
        padding: 30px 20px;
    }
    
    .thank-you-content h1 {
        font-size: 24px;
    }
    
    .thank-you-content p {
        font-size: 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 28px;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .table-wrapper {
        overflow-x: visible;
    }
    
    .comparison-table,
    .achievements-table,
    .schedule-table {
        min-width: auto;
        display: block;
    }
    
    .comparison-table thead,
    .achievements-table thead,
    .schedule-table thead {
        display: none;
    }
    
    .comparison-table tbody,
    .achievements-table tbody,
    .schedule-table tbody {
        display: block;
    }
    
    .comparison-table tr,
    .achievements-table tr,
    .schedule-table tr {
        display: block;
        background-color: var(--white);
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 15px;
        border: none;
    }
    
    .comparison-table tr:last-child,
    .achievements-table tr:last-child,
    .schedule-table tr:last-child {
        margin-bottom: 0;
    }
    
    .comparison-table td,
    .achievements-table td,
    .schedule-table td {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }
    
    .comparison-table td:last-child,
    .achievements-table td:last-child,
    .schedule-table td:last-child {
        border-bottom: none;
    }
    
    .comparison-table td:before,
    .achievements-table td:before,
    .schedule-table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-dark);
        display: block;
        margin-bottom: 5px;
    }
    
    .comparison-table td:first-child:before {
        content: 'Критерий:';
    }
    
    .comparison-table td:nth-child(2):before {
        content: 'Основы восстановления энергии:';
    }
    
    .comparison-table td:nth-child(3):before {
        content: 'Продвинутые практики:';
    }
    
    .comparison-table td:nth-child(4):before {
        content: 'Индивидуальные программы:';
    }
    
    .achievements-table td:first-child:before {
        content: 'Год:';
    }
    
    .achievements-table td:nth-child(2):before {
        content: 'Достижение:';
    }
    
    .achievements-table td:nth-child(3):before {
        content: 'Результат:';
    }
    
    .schedule-table td:first-child:before {
        content: 'Программа:';
    }
    
    .schedule-table td:nth-child(2):before {
        content: 'День недели:';
    }
    
    .schedule-table td:nth-child(3):before {
        content: 'Время:';
    }
    
    .schedule-table td:nth-child(4):before {
        content: 'Формат:';
    }
    
    .comparison-table tr:hover,
    .achievements-table tr:hover,
    .schedule-table tr:hover {
        background-color: var(--bg-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-question h4 {
        font-size: 14px;
    }
}

