/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header & Navigation */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-lang-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1b5e20;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.language-buttons {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    background: rgba(27, 94, 32, 0.85);
    padding: 4px;
    border-radius: 20px;
    width: fit-content;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: move;
    user-select: none;
    touch-action: none;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.language-buttons:hover {
    background: rgba(27, 94, 32, 0.95);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transform: scale(1.05);
}

.lang-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
}

.lang-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

@media (max-width: 768px) {
    .language-buttons {
        transform: scale(1);
        bottom: 15px;
        right: 15px;
        padding: 6px;
    }

    .language-buttons:hover {
        transform: scale(1.05);
    }

    .lang-btn {
        padding: 6px 16px;
        font-size: 1rem;
    }
}
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #1b5e20;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2e7d32;
    transition: all 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #2e7d32;
}

.nav-links .download-btn {
    background-color: #2e7d32;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links .download-btn:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

.nav-links .shodaqoh-btn {
    background-color: #ff9800;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.nav-links .shodaqoh-btn:hover {
    background-color: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.2);
}

.nav-links .download-btn::after,
.nav-links .shodaqoh-btn::after {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1b5e20, #388e3c);
    min-height: fit-content;
    padding: 8rem 1rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero .arabic {
    font-family: 'Traditional Arabic', serif;
    font-size: 2rem;
    margin: 1.5rem 0;
    line-height: 1.8;
}

.hero .translation {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.about-text li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Lectures Section */
.lectures {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-container {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.video-container h3 {
    padding: 1rem;
    color: #1b5e20;
}

.video-container p {
    padding: 0 1rem 1rem;
    color: #666;
}

.more-videos {
    text-align: center;
    margin-top: 3rem;
}

.more-videos-link {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(46, 125, 50, 0.1);
}

.more-videos-link:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(46, 125, 50, 0.2);
}

.more-videos-link img {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
}

.more-videos-link span {
    margin: 0 1rem;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    margin-left: 0.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.more-videos-link:hover .arrow-icon {
    transform: translateX(5px);
}

/* Articles Section */
.articles {
    padding: 6rem 0;
    background-color: #ffffff;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    color: #1b5e20;
    margin-bottom: 1rem;
}

.article-preview, .article-full {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.article-full {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.faq-item h3 {
    padding: 1.5rem;
    margin: 0;
    color: #1b5e20;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.faq-item .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.faq-item .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.schedule-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-day {
    background: #2e7d32;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
}

.schedule-card h3 {
    color: #1b5e20;
    margin-bottom: 0.5rem;
}

.location {
    color: #666;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #ffffff;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: #1b5e20;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

.social-media h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1b5e20;
    padding: 0.5rem 1rem;
    border: 1px solid #2e7d32;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2e7d32;
    color: white;
}

.social-link img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: #1b5e20;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer .social-links {
    display: flex;
    gap: 1.5rem;
}

.footer .social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-lang-container {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .lang-btn {
        padding: 2px;
    }

    .lang-btn img {
        width: 24px;
        height: 18px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #1b5e20;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        background: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        flex-direction: column;
    }
}

.schedule-type {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    margin-right: 10px;
}

.schedule-type.offline {
    background-color: #4CAF50;
    color: white;
}

.schedule-type.online {
    background-color: #2196F3;
    color: white;
}

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

.schedule-image img {
    width: 24px;
    height: 24px;
    margin-left: 0.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.schedule-card:hover .schedule-image {
    transform: translateX(5px);
}

/* Articles Section */
.articles {
    padding: 6rem 0;
    background-color: #ffffff;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    color: #1b5e20;
    margin-bottom: 1rem;
}

.article-preview, .article-full {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.article-full {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.faq-item h3 {
    padding: 1.5rem;
    margin: 0;
    color: #1b5e20;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.faq-item .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.faq-item .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.schedule-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-day {
    background: #2e7d32;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
}

.schedule-card h3 {
    color: #1b5e20;
    margin-bottom: 0.5rem;
}

.location {
    color: #666;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.info-item img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.social-media h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1b5e20;
    padding: 0.5rem 1rem;
    border: 1px solid #2e7d32;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2e7d32;
    color: white;
}

.social-link img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: #1b5e20;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer .social-links {
        margin-top: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-lang-container {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .lang-btn {
        padding: 2px;
    }

    .lang-btn img {
        width: 24px;
        height: 18px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #1b5e20;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        background: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        flex-direction: column;
    }
}

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

.schedule-image img {
    width: 24px;
    height: 24px;
    margin-left: 0.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.schedule-card:hover .schedule-image {
    transform: translateX(5px);
}

/* Articles Section */
.articles {
    padding: 6rem 0;
    background-color: #ffffff;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    color: #1b5e20;
    margin-bottom: 1rem;
}

.article-preview, .article-full {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.article-full {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.faq-item h3 {
    padding: 1.5rem;
    margin: 0;
    color: #1b5e20;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.faq-item .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.faq-item .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.schedule-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-day {
    background: #2e7d32;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
}

.schedule-card h3 {
    color: #1b5e20;
    margin-bottom: 0.5rem;
}

.location {
    color: #666;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.info-item img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.social-media h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1b5e20;
    padding: 0.5rem 1rem;
    border: 1px solid #2e7d32;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2e7d32;
    color: white;
}

.social-link img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: #1b5e20;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-lang-container {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .lang-btn {
        padding: 2px;
    }

    .lang-btn img {
        width: 24px;
        height: 18px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #1b5e20;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        background: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        flex-direction: column;
    }
}

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

.schedule-image img {
    width: 24px;
    height: 24px;
    margin-left: 0.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.schedule-card:hover .schedule-image {
    transform: translateX(5px);
}

/* Articles Section */
.articles {
    padding: 6rem 0;
    background-color: #ffffff;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    color: #1b5e20;
    margin-bottom: 1rem;
}

.article-preview, .article-full {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.article-full {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.faq-item h3 {
    padding: 1.5rem;
    margin: 0;
    color: #1b5e20;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.faq-item .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.faq-item .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.schedule-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-day {
    background: #2e7d32;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
}

.schedule-card h3 {
    color: #1b5e20;
    margin-bottom: 0.5rem;
}

.location {
    color: #666;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.info-item img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.social-media h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1b5e20;
    padding: 0.5rem 1rem;
    border: 1px solid #2e7d32;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2e7d32;
    color: white;
}

.social-link img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: #1b5e20;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-lang-container {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .lang-btn {
        padding: 2px;
    }

    .lang-btn img {
        width: 24px;
        height: 18px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #1b5e20;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        background: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        flex-direction: column;
    }
}

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

.schedule-image img {
    width: 24px;
    height: 24px;
    margin-left: 0.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.schedule-card:hover .schedule-image {
    transform: translateX(5px);
}

/* Articles Section */
.articles {
    padding: 6rem 0;
    background-color: #ffffff;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    color: #1b5e20;
    margin-bottom: 1rem;
}

.article-preview, .article-full {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.article-full {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.faq-item h3 {
    padding: 1.5rem;
    margin: 0;
    color: #1b5e20;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.faq-item .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.faq-item .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.schedule-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-day {
    background: #2e7d32;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
}

.schedule-card h3 {
    color: #1b5e20;
    margin-bottom: 0.5rem;
}

.location {
    color: #666;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.info-item img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.social-media h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1b5e20;
    padding: 0.5rem 1rem;
    border: 1px solid #2e7d32;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2e7d32;
    color: white;
}

.social-link img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: #1b5e20;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-lang-container {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .lang-btn {
        padding: 2px;
    }

    .lang-btn img {
        width: 24px;
        height: 18px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #1b5e20;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        background: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        flex-direction: column;
    }
}

.schedule-type {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    margin-right: 10px;
}

.schedule-type.offline {
    background-color: #4CAF50;
    color: white;
}

.schedule-type.online {
    background-color: #2196F3;
    color: white;
}

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

.schedule-image img {
    width: 24px;
    height: 24px;
    margin-left: 0.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.schedule-card:hover .schedule-image {
    transform: translateX(5px);
}

/* Articles Section */
.articles {
    padding: 6rem 0;
    background-color: #ffffff;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    color: #1b5e20;
    margin-bottom: 1rem;
}

.article-preview, .article-full {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.article-full {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.faq-item h3 {
    padding: 1.5rem;
    margin: 0;
    color: #1b5e20;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.faq-item .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.faq-item .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.schedule-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-day {
    background: #2e7d32;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
}

.schedule-card h3 {
    color: #1b5e20;
    margin-bottom: 0.5rem;
}

.location {
    color: #666;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.info-item img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.social-media h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1b5e20;
    padding: 0.5rem 1rem;
    border: 1px solid #2e7d32;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2e7d32;
    color: white;
}

.social-link img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: #1b5e20;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-lang-container {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .lang-btn {
        padding: 2px;
    }

    .lang-btn img {
        width: 24px;
        height: 18px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #1b5e20;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        background: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        flex-direction: column;
    }
}

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

.schedule-image img {
    width: 24px;
    height: 24px;
    margin-left: 0.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.schedule-card:hover .schedule-image {
    transform: translateX(5px);
}

/* Articles Section */
.articles {
    padding: 6rem 0;
    background-color: #ffffff;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    color: #1b5e20;
    margin-bottom: 1rem;
}

.article-preview, .article-full {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.article-full {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.faq-item h3 {
    padding: 1.5rem;
    margin: 0;
    color: #1b5e20;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.faq-item .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.faq-item .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.schedule-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-day {
    background: #2e7d32;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
}

.schedule-card h3 {
    color: #1b5e20;
    margin-bottom: 0.5rem;
}

.location {
    color: #666;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #ffffff
}