/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 100vh;
}

/* Utility Classes */
.flex { display: flex; }
.fdc { flex-direction: column; }
.jcc {justify-content: center;background: white;padding: 10px;}
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.m24 {font-size: 0.7rem;font-weight: 600;color: gray;text-decoration: none;}
.m36 { font-size: 2.25rem; font-weight: 700; }
.m48 { font-size: 3rem; font-weight: 800; }
.t16 {font-size: 0.7rem;}

// ... keep existing code (navigation styles) the same ...

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav .container {
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #3b82f6;
    text-decoration: none;
    gap: 0.5rem;
}

.logo div:nth-child(2) {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    border-radius: 50%;
}

.nav-menu {
    position: relative;
}

.nav-menuBtnContainer {
    position: relative;
}

.nav-menuBtn {
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-menuBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.nav-menuBtn div:nth-child(2) {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
}

.nav-menuModal-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.nav-menuModal {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 250px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-menuBtnContainer:hover .nav-menuModal-layer {
    opacity: 1;
    visibility: visible;
}

.nav-menuBtnContainer:hover .nav-menuModal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menuModalLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    color: #475569;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.nav-menuModalLink:hover {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #3b82f6;
    transform: translateX(5px);
}

.nav-menuModalLink div:nth-child(2) {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menuModalLink:hover div:nth-child(2) {
    opacity: 1;
}

.nav-search {
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
}

.nav-searchField {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-searchField input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.nav-searchField input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.nav-searchField svg {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    fill: #94a3b8;
    z-index: 1;
}

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

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

/* Mobile Navigation */
.nav-mob {
    display: none;
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.only-mob {
    display: none;
}

/* Main Content */
.page {
    padding: 0.1rem 0;
}

.pageBody {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.pageTitle h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pageContent {
    font-size: 0.77rem;
    line-height: 1.8;
    color: #374151;
}

.pageContent p {
    margin-bottom: 1.5rem;
}

.articleBlogImg {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Article Content */
article {
    margin-top: 2rem;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    font-size: 1.225rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #3b82f6;
    display: inline-block;
}

section ol, section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

section li {
    margin-bottom: 0.75rem;
    font-size: 0.77rem;
}

section li b {
    color: #3b82f6;
    font-weight: 600;
}

section p {
    font-size: 0.77rem;
}

section a {
    color: #3b82f6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

section a:hover {
    border-bottom-color: #3b82f6;
}

// ... keep existing code (table styles, related articles, buttons, footer, mobile styles, horizontal related articles, animations, scrollbar styling) the same ...

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

table caption {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

table th {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.77rem;
}

table tr:hover {
    background: #f8fafc;
}

/* Related Articles */
.relatedArticles {
    margin-top: 4rem;
}

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

.relatedArticle {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.relatedArticle:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.relatedArticleImg {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.articleBg {
    width: 100%;
    height: 100%;
    position: relative;
}

.bgImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.relatedArticle:hover .bgImg {
    transform: scale(1.05);
}

.articleCategory {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.articleLink {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.relatedArticle:hover .articleLink {
    opacity: 1;
}

.articleLink div:nth-child(2) {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
}

.relatedArticleData {
    padding: 1.5rem;
}

.relatedArticleTitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.relatedArticleDescription {
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn.blue-outline {
    border: 2px solid #3b82f6;
    color: #3b82f6;
    background: transparent;
}

.btn.blue-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer .container {
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3b82f6;
}

.footer-copyright {
    color: #94a3b8 !important;
}

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

    .nav-mob {
        display: grid;
    }

    .only-mob {
        display: block;
    }

    .container {
        padding: 0 1px;
    }

    .pageBody {
        padding: 0rem 0.5rem;
        border-radius: 15px;
    }

    .pageTitle h1 {
        font-size: 2rem;
    }

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

    .nav-links {
        display: none;
    }

    .nav-search {
        margin: 0;
        max-width: none;
    }

    .footer .container {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pageTitle h1 {
        font-size: 1.15rem;
    }

    .pageContent {
        font-size: 0.7rem;
    }

    .articleBlogImg {
        height: 250px;
    }

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

/* Horizontal Related Articles for Mobile */
.relatedArticlesHorizontal {
    padding: 2rem 0;
}

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

.relatedArticlesHorizontal__arrows {
    display: flex;
    gap: 0.5rem;
}

.relatedArticlesHorizontal__arrow {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.relatedArticlesHorizontal__arrow:hover {
    background: #2563eb;
    transform: scale(1.1);
}

.relatedArticlesHorizontal__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.relatedArticlesHorizontal__container {
    display: flex;
    gap: 1.5rem;
    transition: margin-left 0.3s ease;
}

.article {
    min-width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding-left: 15px;
}

.article a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.articleImg {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
}

.articleTitle {
    padding: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.articleDescription {
    padding: 0 1rem;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article .btn {
    margin: 1rem;
}

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

.pageBody {
    animation: fadeInUp 0.6s ease;
}

.relatedArticle {
    animation: fadeInUp 0.6s ease;
}

.relatedArticle:nth-child(1) { animation-delay: 0.1s; }
.relatedArticle:nth-child(2) { animation-delay: 0.2s; }
.relatedArticle:nth-child(3) { animation-delay: 0.3s; }
.relatedArticle:nth-child(4) { animation-delay: 0.4s; }
.relatedArticle:nth-child(5) { animation-delay: 0.5s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb, #0891b2);
}
@media (max-width: 640px) {
  .pageContent.pageContentM .pageDescription{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .pageContent.pageContentM h1, .pageContent.pageContentM h2, .pageContent.pageContentM h3, .pageContent.pageContentM h4, .pageContent.pageContentM p, .pageContent.pageContentM img, .pageContent.pageContentM ul, .pageContent.pageContentM li, .pageContent.pageContentM table  {
    opacity: 0;
    animation: FI 1s ease-in forwards;
  }
  .pageContent.pageContentM h1 {
    animation-delay: 0s;
  }
  .pageContent.pageContentM p {
    animation-delay: 0.1s;
  }
  .pageContent.pageContentM img {
    animation-delay: 0.2s;
  }
  .pageContent.pageContentM h2 {
    animation-delay: 0.2s;
  }

  @keyframes FI {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}
.pageDesc{
  overflow-x: auto;
}

.cookies{position:absolute;bottom:0;display:flex;justify-content:center;width:100%;padding:10px;background-color:#FFFFFF;border-top:1px solid rgba(59,130,246,0.1);border-bottom:1px solid rgba(59,130,246,0.1);z-index:100;opacity:0;visibility:hidden;pointer-events:none;}.cookies[data-show=true]{position:sticky;opacity:1;visibility:visible;pointer-events:all;}.cookies>span{max-width:1200px;align-items:end;text-align:center;gap:4px;font-size:14px;}.cookies>span a,.cookies>span button{color:#000000;text-decoration:underline;cursor:pointer;}.cookies>span button{font-size:16px;}

@media (max-width: 640px) {
  .cookies>span{
    font-size: 9px;
  }
}
