@font-face {
    font-family: "Vazir-regulare";
    src: url(../font/ttf/regulare/Vazirmatn-Regular.ttf) format(TrueType);
}

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

body {
    font-family: "Vazir-regulare", Tahoma, sans-serif;
    background-color: #f8f9fc;
    color: #333;
    line-height: 1.6;
}

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

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #243b64 0%, #1a2d4f 100%);
    padding: 15px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(36, 59, 100, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(142, 64, 87, 0.3);
}

.title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #f8f9fc, #8e4057);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== دکمه همبرگر ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
    order: 0;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle.active {
    transform: rotate(90deg);
}

/* ===== NAVIGATION ===== */
nav {
    display: flex;
    gap: 25px;
    margin: 0 20px;
    order: 1;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}

nav ul li a:hover {
    color: #f8f9fc;
    transform: translateY(-2px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: #8e4057;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: #f8f9fc;
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: #1a2d4f;
    border-radius: 10px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(142, 64, 87, 0.15);
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-right: 2px solid transparent;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    color: #f8f9fc;
    background: rgba(142, 64, 87, 0.1);
    border-right-color: #8e4057;
}

/* ===== لینک ورود در منوی موبایل ===== */
.mobile-sign-in {
    display: none;
}

.sign-in-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8e4057 !important;
    font-weight: 600;
    background: rgba(142, 64, 87, 0.1);
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid rgba(142, 64, 87, 0.2);
    transition: all 0.3s ease;
    padding: 10px 15px;
}

.sign-in-mobile:hover {
    background: rgba(142, 64, 87, 0.2);
    border-color: #8e4057;
}

.sign-in-mobile svg {
    fill: #8e4057;
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    order: 2;
}

.buy {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
}

.buy:hover {
    background: rgba(142, 64, 87, 0.2);
    transform: scale(1.1);
}

.buy svg {
    width: 32px;
    height: 32px;
}

.sign-in {
    background: linear-gradient(135deg, #8e4057, #6d3245);
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sign-in:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(142, 64, 87, 0.4);
}

.sign-in h4 {
    color: #f8f9fc;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== INTRODUCTION - با تصویر پس‌زمینه یکدست و زیبا ===== */
.introduction {
    background: linear-gradient(135deg, rgba(36, 59, 100, 0.75), rgba(26, 45, 79, 0.85)), url('../picture/wallpaper_under_300KB.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* لایه افکت نورپردازی متحرک */
.introduction::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(142, 64, 87, 0.08) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* لایه شفاف برای عمق و زیبایی بیشتر */
.introduction::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 0;
}

.intro-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease forwards;
}

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

/* نشان یا برچسب */
.badge {
    display: inline-block;
    background: rgba(142, 64, 87, 0.35);
    color: #f8f9fc;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(142, 64, 87, 0.5);
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.badge:hover {
    background: rgba(142, 64, 87, 0.5);
    transform: scale(1.05);
    border-color: rgba(142, 64, 87, 0.7);
    box-shadow: 0 6px 30px rgba(142, 64, 87, 0.2);
}

/* عنوان اصلی */
.intro-content h2 {
    color: #ffffff;
    font-size: 3.2rem;
    margin-bottom: 16px;
    font-weight: 800;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
    line-height: 1.2;
}

.intro-content h2 span {
    background: linear-gradient(90deg, #f8f9fc, #8e4057);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* توضیحات */
.intro-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto 10px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    line-height: 1.9;
}

/* ===== SEARCH BAR ===== */
.search-bar {
    position: relative;
    z-index: 1;
    max-width: 550px;
    margin: 30px auto 0;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.search-wrapper:focus-within {
    border-color: #8e4057;
    box-shadow: 0 8px 60px rgba(142, 64, 87, 0.2), 0 0 100px rgba(142, 64, 87, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.12);
}

.search-wrapper input {
    flex: 1;
    padding: 18px 28px;
    background: transparent;
    border: none;
    outline: none;
    color: #f8f9fc;
    font-size: 1rem;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.search-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    transition: color 0.3s ease;
}

.search-wrapper input:focus::placeholder {
    color: rgba(255, 255, 255, 0.15);
}

.search-icon {
    background: linear-gradient(135deg, #8e4057, #6d3245);
    border: none;
    padding: 14px 32px;
    margin: 5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    position: relative;
    overflow: hidden;
}

.search-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.search-icon:hover::before {
    width: 300px;
    height: 300px;
}

.search-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 35px rgba(142, 64, 87, 0.4);
}

.search-icon:active {
    transform: scale(0.95);
}

.search-icon svg {
    width: 22px;
    height: 22px;
    fill: #f8f9fc;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.search-icon:hover svg {
    transform: scale(1.1);
}

/* ===== COURSES ===== */
.Categories {
    padding: 50px 0 60px;
    background: #f8f9fc;
}

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

.section-header h2 {
    font-size: 1.8rem;
    color: #243b64;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #8e4057, #6d3245);
    border-radius: 3px;
}

.view-all {
    color: #8e4057;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #243b64;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 25px;
}

.course-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(142, 64, 87, 0.05);
}

@media (min-width: 769px) {
    .course-card {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }
    
    .course-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(142, 64, 87, 0.12), 0 8px 30px rgba(0, 0, 0, 0.06);
        border-color: rgba(142, 64, 87, 0.15);
    }
}

@media (max-width: 768px) {
    .course-card {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
        transition: transform 0.3s ease;
    }
    
    .course-card:active {
        transform: scale(0.98);
    }
}

.course-card a {
    display: block;
    color: inherit;
}

.course-image {
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.course-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #8e4057;
    color: #f8f9fc;
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.course-badge.popular {
    background: #243b64;
}

.course-info {
    padding: 18px 20px 20px;
}

.course-header h3 {
    font-size: 1.1rem;
    color: #243b64;
    margin-bottom: 4px;
}

.course-header p {
    font-size: 0.85rem;
    color: #888;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0 15px;
}

.instructor {
    display: flex;
    align-items: center;
    gap: 8px;
}

.instructor img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.instructor span {
    font-size: 0.8rem;
    color: #555;
}

.point {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: #f59e0b;
}

.point span {
    display: flex;
    align-items: center;
    line-height: 1;
}

.point svg {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
}

.course-price {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    font-weight: 700;
    color: #243b64;
    border-top: 1px solid #eee;
    padding-top: 14px;
}

.course-price span:first-child {
    font-size: 1.1rem;
    color: #8e4057;
}

.course-price span:last-child {
    font-size: 0.85rem;
    color: #888;
}

/* ===== CONNECTIONS ===== */
.connections {
    background: linear-gradient(135deg, #243b64, #1a2d4f);
    padding: 30px 0;
}

.connections .container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.telegram, .instagram {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border-radius: 30px;
    color: #f8f9fc;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.telegram {
    background: #0088cc;
}

.telegram svg {
    fill: #ffffff;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.instagram svg {
    fill: #ffffff;
}

.telegram:hover, .instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: #243b64;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0 20px;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
}

.footer-info {
    max-width: 350px;
    flex-shrink: 0;
}

.footer-info h3 {
    color: #f8f9fc;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 25px 40px;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin: 0;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 5px 0;
    position: relative;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #8e4057;
    transition: width 0.3s ease;
}

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

.footer-links li a:hover {
    color: #f8f9fc;
    transform: translateX(-3px);
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(142, 64, 87, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-links li a:hover .footer-icon {
    background: rgba(142, 64, 87, 0.3);
    transform: scale(1.1);
}

.footer-icon svg {
    width: 18px;
    height: 18px;
    fill: #8e4057;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .intro-content h2 {
        font-size: 2.2rem;
    }
    .course-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .logo {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 5px;
    }

    /* دکمه همبرگر - سمت راست */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 0;
        margin-left: 5px;
    }

    /* لوگو و عنوان - وسط */
    .logo img {
        order: 1;
        width: 40px;
        height: 40px;
    }

    .title {
        order: 1;
        font-size: 1.1rem;
        margin: 0 5px;
    }

    /* سبد خرید و ورود - سمت چپ */
    .header-actions {
        order: 2;
        gap: 8px;
    }

    .header-actions .buy svg {
        width: 28px;
        height: 28px;
    }

    /* مخفی کردن دکمه ورود در هدر موبایل */
    .header-actions .sign-in {
        display: none;
    }

    /* نمایش لینک ورود در منوی موبایل */
    .mobile-sign-in {
        display: block;
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 15px;
    }

    /* ===== منوی اصلی - از سمت راست باز می‌شود ===== */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #243b64, #1a2d4f);
        padding: 70px 25px 30px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        margin: 0;
        display: block;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        width: 100%;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 12px 15px;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    nav ul li a::after {
        display: none;
    }

    nav ul li a:hover,
    nav ul li a.active {
        background: rgba(142, 64, 87, 0.1);
        color: #f8f9fc;
    }

    /* استایل ویژه برای آیتم "دوره‌ها" در موبایل */
    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown > a::after {
        content: '▾';
        display: inline-block;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.4);
        transition: transform 0.3s ease;
    }

    .dropdown.open > a::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.03);
        padding: 0 0 0 15px;
        margin-top: 5px;
        border-radius: 8px;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 15px;
        font-size: 0.9rem;
        border-right: 2px solid transparent;
        color: rgba(255, 255, 255, 0.5);
    }

    .dropdown-menu li a:hover {
        background: rgba(142, 64, 87, 0.05);
        border-right-color: #8e4057;
        color: #f8f9fc;
    }

    /* سایه روی صفحه هنگام باز بودن منو - برای منوی سمت راست */
    nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: -1;
    }

    /* ===== CONNECTIONS در موبایل ===== */
    .connections .container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .telegram, .instagram {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* ===== FOOTER در موبایل ===== */
    .about {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info {
        max-width: 100%;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 15px 30px;
    }

    .footer-links li a {
        justify-content: center;
    }

    /* ===== INTRODUCTION در موبایل ===== */
    .introduction {
        padding: 60px 0;
        min-height: 380px;
        background: linear-gradient(135deg, rgba(36, 59, 100, 0.8), rgba(26, 45, 79, 0.88)), url('../picture/wallpaper_under_300KB.jpg');
        background-size: cover;
        background-position: center 40%;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .intro-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .badge {
        font-size: 0.8rem;
        padding: 6px 18px;
    }

    .search-wrapper input {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
    
    .search-icon {
        padding: 12px 20px;
        min-width: 48px;
    }
    
    .search-icon svg {
        width: 18px;
        height: 18px;
    }

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

@media (max-width: 480px) {
    .course-grid {
        grid-template-columns: 1fr;
    }

    .intro-content h2 {
        font-size: 1.4rem;
    }

    .intro-content p {
        font-size: 0.9rem;
    }

    .introduction {
        padding: 40px 0;
        min-height: 300px;
        background: linear-gradient(135deg, rgba(36, 59, 100, 0.85), rgba(26, 45, 79, 0.92)), url('../picture/wallpaper_under_300KB.jpg');
        background-size: cover;
        background-position: center 50%;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }

    .search-wrapper input {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    .title {
        font-size: 0.95rem;
    }

    .header-actions .buy svg {
        width: 24px;
        height: 24px;
    }

    nav {
        width: 85%;
        max-width: 280px;
    }

    .telegram, .instagram {
        max-width: 240px;
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .telegram svg, .instagram svg {
        width: 20px;
        height: 20px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-icon {
        width: 28px;
        height: 28px;
    }

    .footer-icon svg {
        width: 16px;
        height: 16px;
    }
}