/* ==================== Global Styles ==================== */
:root {
    --primary-color: #2468CD;
    --secondary-color: #4e24cd;
    --text-dark: #252525;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent: #BF2642;
    --yellow-bg: #fef3c7;
    --blue-bg: #dbeafe;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

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

/* ==================== Header ==================== */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.text-primary {
    color: var(--primary-color);
}

.logo:hover {
    color: var(--secondary-color);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu {
    display: none;
    background: var(--bg-white);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s;
}

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

/* ==================== Hero Section ==================== */
.hero {
    background: var(--primary-color);
    padding: 60px 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-content {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.4;
}

.hero-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.hero-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

/* ==================== Fact Section ==================== */
.fact-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.fact-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.fact-card h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.fact-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.fact-divider {
    color: var(--accent);
    font-size: 1.5rem;
    margin: 20px 0;
}

.fact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.fact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.fact-link:hover {
    color: var(--secondary-color);
}

.fact-separator {
    color: var(--text-gray);
    font-size: 1rem;
}

/* ==================== Blog Section ==================== */
.blog-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

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

.blog-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-card-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-content h3 a:hover {
    color: var(--primary-color);
}

.blog-card-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.read-more-link:hover {
    color: var(--secondary-color);
}

.section-link-wrapper {
    text-align: center;
    margin-top: 30px;
}

.section-bottom-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.section-bottom-link:hover {
    color: var(--secondary-color);
}

/* ==================== Parents Section ==================== */
.parents-section {
    padding: 80px 0;
    background: var(--yellow-bg);
}

.parents-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.parents-content h2,
.students-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.parents-content p,
.students-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.section-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

.section-tag {
    background: var(--bg-white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.section-button:hover {
    background: var(--primary-color);
    color: white;
}

.parents-articles,
.students-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.side-card:hover {
    transform: translateY(-3px);
}

.side-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.side-card h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.side-card h4 a:hover {
    color: var(--primary-color);
}

.side-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== About Section ==================== */
.about-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-button {
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(36, 104, 205, 0.2);
}

.about-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(36, 104, 205, 0.3);
}

/* ==================== Students Section ==================== */
.students-section {
    padding: 80px 0;
    background: var(--blue-bg);
}

.students-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 30px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.feedback-form {
    max-width: 600px;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Open Sans', sans-serif;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ==================== Flash Messages ==================== */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 2000;
    max-width: 400px;
}

.flash-message {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.3s ease;
}

.flash-success {
    background: #10b981;
    color: white;
}

.flash-error {
    background: #ef4444;
    color: white;
}

.flash-message button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 15px;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==================== Article Page ==================== */
.article-page {
    padding: 60px 0;
    background: var(--bg-white);
}

.article-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.article-hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-summary {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

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

.text-block {
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.text-block p {
    margin-bottom: 20px;
}

.text-block ul, .text-block ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.text-block strong {
    font-weight: 700;
    color: var(--text-dark);
}

.subtitle-block {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.math-block {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
    overflow-x: auto;
}

.image-block {
    margin: 40px 0;
    text-align: center;
}

.image-block img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-block figcaption {
    margin-top: 15px;
    color: var(--text-gray);
    font-style: italic;
    font-size: 0.95rem;
}

/* ==================== Comments Section ==================== */
.comments-section {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.comments-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.comment-form {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

.comment-form textarea {
    resize: vertical;
    min-height: 100px;
}

.comments-list {
    margin-top: 30px;
}

.comment {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.comment-header strong {
    color: var(--text-dark);
    font-size: 1.05rem;
}

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

.comment p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.page-header {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin: 0;
}

/* ==================== Articles List Section ==================== */
.articles-list-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.articles-list-section .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.articles-list-section .article-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.articles-list-section .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.articles-list-section .article-content {
    padding: 25px;
}

.articles-list-section .article-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.articles-list-section .article-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.articles-list-section .article-content h3 a:hover {
    color: var(--primary-color);
}

.articles-list-section .article-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.articles-list-section .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.articles-list-section .article-date {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.articles-list-section .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.articles-list-section .read-more:hover {
    color: var(--secondary-color);
}

/* ==================== Single Page ==================== */
.single-page {
    padding: 0;
    background: var(--bg-white);
}

.single-page .page-header {
    margin-bottom: 0;
}

.page-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-body .text-block {
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-body .text-block p {
    margin-bottom: 20px;
}

.page-body .text-block ul,
.page-body .text-block ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-body .text-block li {
    margin-bottom: 10px;
}

.page-body .subtitle-block {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.page-body .math-block {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
    overflow-x: auto;
}

.page-body .image-block {
    margin: 40px 0;
    text-align: center;
}

.page-body .image-block img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-body .image-block figcaption {
    margin-top: 15px;
    color: var(--text-gray);
    font-style: italic;
    font-size: 0.95rem;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-gray);
    font-size: 1.2rem;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 300px 1fr;
        gap: 30px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .parents-wrapper,
    .students-wrapper {
        gap: 40px;
    }

    .articles-list-section .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-content {
        padding: 30px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-counter {
        font-size: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .counter-number {
        font-size: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .parents-wrapper,
    .students-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .students-wrapper {
        direction: ltr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .section-tags {
        justify-content: center;
    }

    .fact-card {
        padding: 30px 20px;
    }

    .fact-separator {
        display: none;
    }

    .fact-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-section {
        padding: 0 10px;
    }

    .articles-list-section .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-body {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .blog-card-content,
    .side-card {
        padding: 20px;
    }

    .section-button,
    .about-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .section-tag {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .article-header h1 {
        font-size: 1.6rem;
    }

    .article-summary {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-header {
        padding: 40px 0;
    }

    .articles-list-section .article-content,
    .comment-form {
        padding: 20px;
    }

    .comment {
        padding: 15px;
    }
}

/* ==================== File Block Styles (Public Pages) ==================== */
.file-block {
    margin: 30px 0;
}

.file-download-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.file-download-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.file-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.file-info {
    flex-grow: 1;
}

.file-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.file-description {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.file-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.file-size, .file-type {
    padding: 4px 10px;
    background: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
}

.file-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.file-download-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(36, 104, 205, 0.3);
    color: white;
}

.file-download-btn i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .file-download-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .file-icon {
        font-size: 2.5rem;
    }

    .file-download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Цвета для разных типов файлов */
.text-purple {
    color: #8b5cf6;
}