  /* Black Shiny Navbar (Keep your existing styles) */
  .navbar-gradient {
    background: linear-gradient(90deg, #000000, #1a1a1a, #2d2d2d);
  }

  /* Add padding to the body to prevent content from hiding behind the fixed header and marquee */
  body {
      padding-top: 100px; /* Adjust this value based on your header + marquee height */
  }

  /* Additional mobile adjustment if needed */
  @media (min-width: 768px) {
      body {
          padding-top: 120px; 
      }
  }


  /*New Style*/
 
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== BASE STYLES ===== */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

.main-content {
    width: 80%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.post-title {
    /* Existing Text Color Styles */
    background: #0e0e75;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Ensure other browsers use the standard property */
    background-clip: text;
    color: transparent; 

    /* --- Styles to add the line --- */
    
    /* Crucial: Makes the border only as wide as the text */
    display: inline-block; 
    
    /* Adds a small space between the text and the line */
    padding-bottom: 6px; 
    
    /* Defines the line: 3px thick, solid, and same color as the text background */
    border-bottom: 3px solid #0e0e75; 
    
    /* Optional: If you want to force the line to have rounded ends */
    /* border-radius: 0 0 2px 2px; */
}
    

.post-meta {
    color: #090909;
    font-size: 0.9rem;
}

.post-meta i {
    margin-right: 0.25rem;
}

.post-meta span {
    margin-right: 1rem;
}

.meta-item {
    transition: all 0.3s ease;
}

.meta-item:hover {
    transform: translateY(-2px);
}

/* ===== POST CONTENT ===== */
.post-content {
    line-height: 1.8;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.post-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #374151;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    border-left: 4px solid #3104fb;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #4b5563;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.post-tag {
    background-color: #e5e7eb;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.post-tag:hover {
    background-color: #d1d5db;
}

/* ===== POST SUMMARY ===== */
.post-summary {
    background-color: #f3f4f6;
    border-left: 2px solid #030cf9;
    border-right: 2px solid #030cf9;
    border-top: 2px solid #030cf9;
    border-bottom: 2px solid #030cf9;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    
    
}

.content-text {
    /* Sets the font size to 1.2 times the root element's font size (1.2rem) */
    font-size: 1.2rem;
    
    /* Sets the text color explicitly to black */
    color: #000000; 
}

/* ===== CARD COMPONENTS ===== */
.dates-card, .fees-card, .links-card, .age-card,
.vacancy-card, .process-card, .selection-card,
.cast-vacancy-card, .posts-section,
.modern-paragraph-card, .faq-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dates-card:hover, .fees-card:hover, .links-card:hover, .age-card:hover,
.vacancy-card:hover, .process-card:hover, .selection-card:hover,
.cast-vacancy-card:hover, .posts-section:hover,
.modern-paragraph-card:hover, .faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ===== CARD HEADERS ===== */
.dates-header {
    background: linear-gradient(90deg, #3b82f6, #1e40af);
}

.fees-header {
    background: linear-gradient(90deg, #10b981, #059669);
}

.links-header {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.age-header {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.vacancy-header {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
}

.process-header {
    background: linear-gradient(90deg, #7c3aed, #6d28d9);
}

.selection-header {
    background: linear-gradient(90deg, #059669, #047857);
}

.cast-vacancy-header {
    background: linear-gradient(90deg, #9333ea, #7c3aed);
}

.posts-header {
    background: linear-gradient(90deg, #3b82f6, #1e40af);
}

.related-posts-header {
    background: linear-gradient(90deg, #10b981, #059669);
}

.modern-paragraph-header {
    background: linear-gradient(90deg, #7c3aed, #6d28d9);
}

.faq-header {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
}

/* Common header styles */
.dates-header, .fees-header, .links-header, .age-header,
.vacancy-header, .process-header, .selection-header,
.cast-vacancy-header, .posts-header, .related-posts-header,
.modern-paragraph-header, .faq-header {
    color: white;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 0.1rem;
}

.modern-paragraph-header, .faq-header {
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
}

/* ===== CARD CONTENT ===== */
.dates-content, .fees-content, .links-content, .age-content,
.vacancy-table, .process-content, .selection-content,
.cast-vacancy-content, .posts-content,
.modern-paragraph-content, .faq-content {
    padding: 1.5rem;
}

.modern-paragraph-content, .faq-content {
    padding: 2rem;
}

/* ===== GRID LAYOUTS ===== */
.dates-fees-section, .links-age-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.posts-sections-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

/* ===== LIST ITEMS ===== */
.date-item, .fee-item, .link-item, .age-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgb(95, 92, 92);
}

.date-item:last-child, .fee-item:last-child, .link-item:last-child, .age-item:last-child {
    border-bottom: none;
    
}

.date-label, .fee-label, .link-label, .age-label {
    font-weight: 600;
    color: #335ea4;
    
}

.date-value, .fee-value, .link-value, .age-value {
    color: #1e40af;
    font-weight: 600;
}

.fee-value.free {
    color: #10b981;
}

/* ===== BUTTONS & LINKS ===== */
.link-button {
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.link-button:hover {
    background-color: #1e40af;
    transform: scale(1.05);
}

.contact-button, .cta-button {
    background: #3b82f6;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-button:hover, .cta-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.cta-button {
    background: white;
    color: #1e40af;
}

.cta-button:hover {
    background: #f0f9ff;
    transform: scale(1.05);
}

/* ===== PAYMENT METHODS ===== */
.payment-methods {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #d1d5db;
}

.payment-methods h4 {
    font-weight: 600;
    color: #2403f7;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    border-bottom: 1px solid blue;
}

.payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.payment-method {
    background-color: #01f933;
    color: #070707;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s;
}

.payment-method:hover {
    background-color: #e5e7eb;
    transform: scale(1.05);
}

/* ===== VACANCY TABLE ===== */
.vacancy-section, .process-section, .selection-section,
.cast-vacancy-section, .modern-paragraph-section, .faq-section {
    width: 100%;
    margin: 3rem 0;
}

.vacancy-table {
    width: 100%;
    border-collapse: collapse;
}

.vacancy-table th {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #080808;
}

.vacancy-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #090909;
    vertical-align: top;
}

.vacancy-table tr:last-child td {
    border-bottom: none;
}

.vacancy-table tr:hover {
    background-color: #f9fafb;
}

.post-name {
    font-weight: 600;
    color: #1e40af;
    font-size: 1.1rem;
}

.post-count {
    font-weight: 700;
    color: #dc2626;
    font-size: 1.1rem;
    
}

.eligibility-criteria {
    color: #050505;
    line-height: 1.6;
     font-size: 1.2rem;
    
}

/* ===== PROCESS LISTS ===== */
.process-list, .selection-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-item, .selection-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.process-item:last-child, .selection-item:last-child {
    border-bottom: none;
}

.process-icon, .selection-icon {
    background: #f3f4f6;
    color: #7c3aed;
    padding: 0.5rem;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.selection-icon {
    color: #059669;
}

.process-text, .selection-text {
    color: #060606;
    line-height: 1.6;
    font-size: 1.2rem;
    border-bottom: 1px solid black;
}

.note-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.note-text {
    color: #92400e;
    font-weight: 500;
    font-style: italic;
}

/* ===== CAST VACANCY GRID ===== */
.cast-vacancy-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

.post-name-column, .category-column {
    display: flex;
    flex-direction: column;
}

.cast-row {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.cast-row:last-child {
    border-bottom: none;
}

.cast-row.header {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

.post-name-cell {
    font-weight: 600;
    color: #1e40af;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    width: 100%;
}

.category-cell {
    text-align: center;
    padding: 0.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
}

.category-cell.header {
    background: #f3f4f6;
    color: #374151;
    font-weight: 600;
}

.category-cell.data {
    background: #eff6ff;
    color: #1e40af;
    font-weight: 700;
}

/* ===== POSTS SIDEBAR ===== */
.post-item-side {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.post-item-side:last-child {
    border-bottom: none;
}

.post-item-side:hover {
    background-color: #f8fafc;
    border-radius: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.post-date-side {
    background: #f0f7ff;
    color: #1e40af;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.post-content-side {
    flex: 1;
}

.post-title-side {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.post-title-side:hover {
    color: #3b82f6;
}

.post-meta-side {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.post-category-side {
    background: #e8f4fc;
    color: #2980b9;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.post-tag-side {
    background: #f0f0f0;
    color: #7f8c8d;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.no-posts {
    text-align: center;
    color: #6b7280;
    padding: 2rem;
    font-style: italic;
}

 /* ===== MODERN PARAGRAPH ===== */
        .modern-paragraph-content h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #2a3e7f;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 3px solid #e5e7eb;
            position: relative;
        }

        .modern-paragraph-content h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #1e40af);
            border-radius: 3px;
        }

        .modern-paragraph-content p {
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .modern-paragraph-card {
            background: white;
            border-radius: 0.75rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .modern-paragraph-header {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 600;
            font-size: 1.25rem;
        }

        .modern-paragraph-content {
            padding: 2rem;
        }

        /* ===== RESPONSIVE TABLE ===== */
        .responsive-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-radius: 0.5rem;
            overflow: hidden;
        }

        .responsive-table th {
            background: orangered;
            color: white;
            font-weight: 600;
            text-align: left;
            padding: 1rem;
            font-size: 0.95rem;
            line-height: 0.4rem;
        }

        .responsive-table td {
            padding: 1rem;
            border-bottom: 1px solid #e5e7eb;
            color: #070707;
        }

        .responsive-table tr:nth-child(even) {
            background-color: #f8fafc;
        }

        .responsive-table tr:hover {
            background-color: #f0f7ff;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .responsive-table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
            
            .modern-paragraph-content {
                padding: 1.5rem;
            }
            
            .modern-paragraph-content h2 {
                font-size: 1.5rem;
            }
        }
/* ===== FAQ SECTION ===== */
.faq-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}

.faq-intro p {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-accordion {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #f3f4f6;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-color: #3b82f6;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f0f7ff;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-bottom: 1px solid #bae6fd;
}

.question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
    padding-right: 2rem;
    line-height: 1.5;
}

.faq-item.active .question-text {
    color: #1e40af;
}

.question-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.question-icon::before,
.question-icon::after {
    content: '';
    position: absolute;
    background: #6b7280;
    transition: all 0.3s ease;
}

.question-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.question-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .question-icon::before,
.faq-item.active .question-icon::after {
    background: #3b82f6;
}

.faq-item.active .question-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 1000px;
}

.answer-content {
    color: #4b5563;
    line-height: 1.7;
}

.answer-content p {
    margin-bottom: 1rem;
}

.answer-content ul, .answer-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.answer-content li {
    margin-bottom: 0.5rem;
    position: relative;
}

.answer-content ul li::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.answer-content strong {
    color: #1e40af;
    font-weight: 600;
}

.faq-category {
    margin-bottom: 2.5rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
}

.faq-contact {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.faq-contact h4 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-contact p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .main-content {
        width: 95%;
        max-width: 95%;
    }
    
    .post-content h2 {
        font-size: 1.25rem;
    }
    
    .post-content h3 {
        font-size: 1.125rem;
    }
    
    .post-summary {
        padding: 1rem;
    }
    
    .dates-fees-section, .links-age-section, .posts-sections-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vacancy-table {
        display: block;
        overflow-x: auto;
    }
    
    .vacancy-table th, .vacancy-table td {
        padding: 0.75rem 1rem;
    }
    
    .process-item, .selection-item {
        flex-direction: column;
    }
    
    .process-icon, .selection-icon {
        margin-bottom: 0.5rem;
    }
    
    .cast-vacancy-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .cast-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.25rem;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .category-cell {
        padding: 0.375rem 0.25rem;
        font-size: 0.875rem;
    }
    
    .post-name-cell {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .post-item-side {
        flex-direction: column;
    }
    
    .post-date-side {
        margin-right: 0;
        margin-bottom: 0.75rem;
        align-self: flex-start;
    }
    
    .post-meta-side {
        gap: 0.5rem;
    }
    
    .modern-paragraph-header, .faq-header {
        padding: 1.25rem 1.5rem;
        font-size: 1.25rem;
    }
    
    .modern-paragraph-content, .faq-content {
        padding: 1.5rem;
    }
    
    .modern-paragraph-content h2 {
        font-size: 1.5rem;
    }
    
    .modern-paragraph-content h3 {
        font-size: 1.25rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .faq-intro h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .question-text {
        font-size: 1rem;
        padding-right: 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.25rem 1.5rem;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-cell {
        font-size: 0.8rem;
        padding: 0.25rem;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .question-text {
        font-size: 0.95rem;
        padding-right: 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.25rem;
    }
}     


  
body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #030303;
        }

        .main-container {
            display: flex;
            max-width: 95%;
            margin: 0 auto;
            gap: 10px;
            padding: 10px 0;
        }

        .sidebar {
            flex: 0 0 220px;
            background: #20485e;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 0 10px rgba(13, 13, 13, 0.05);
            position: sticky;
            top: 20px;
            height: fit-content;
            border: 1px solid #030303;
        }

        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .sidebar a {
            text-decoration: none;
            color: #fbfbfb;
            font-weight: 700;
            padding: 10px 14px;
            display: block;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .sidebar a:hover, .sidebar a.active {
            background: #0077ff;
            color: #fff;
        }

        .content {
            flex: 1;
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }

        article {
            margin-bottom: 60px;
            margin-top: 20px;
            border-bottom: 1px solid black;
             
        }

        article h2 {
            margin-top: 0;
            margin-bottom: 20px;
            color: #0077ff;
            font-size: 22px;
            font-weight: bold;
        }

        /* FAQ Section Styles */
        .faq-section {
            margin: 40px 0;
            max-width: 95%;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .faq-header {
            background: #20485e;
            color: white;
            padding: 16px 20px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .faq-content {
            padding: 20px;
        }

        .faq-intro {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e2e8f0;
        }

        .faq-intro h2 {
            color: #20485e;
            margin: 0 0 8px 0;
            font-size: 22px;
        }

        .faq-intro div {
            color: #4a5568;
        }

        .faq-accordion {
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-item {
            border-bottom: 1px solid #e2e8f0;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            padding: 16px 20px;
            background: #f7fafc;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #edf2f7;
        }

        .question-text {
            font-weight: 600;
            color: #2d3748;
        }

        .question-icon {
            position: relative;
            width: 20px;
            height: 20px;
            transition: transform 0.3s;
        }

        .question-icon::before,
        .question-icon::after {
            content: '';
            position: absolute;
            background-color: #4a5568;
            transition: transform 0.3s;
        }

        .question-icon::before {
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            transform: translateY(-50%);
        }

        .question-icon::after {
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            transform: translateX(-50%);
        }

        .faq-item.active .question-icon::after {
            transform: translateX(-50%) rotate(90deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .answer-content {
            padding: 16px 20px;
            background: white;
            color: #4a5568;
            line-height: 1.6;
        }

        /* Posts Sections Styles */
        .posts-sections-container {
            display: flex;
            gap: 20px;
            max-width: 95%;
            margin: 40px auto;
        }

        .posts-section {
            flex: 1;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .posts-header, .related-posts-header {
            background: #20485e;
            color: white;
            padding: 16px 20px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .related-posts-header {
            background: #2c5a2c;
        }

        .posts-content {
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
        }

        .post-item {
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .post-item:last-child {
            border-bottom: none;
        }

        .post-item a {
            color: #2d3748;
            text-decoration: none;
            font-weight: 500;
            display: block;
            transition: color 0.3s;
        }

        .post-item a:hover {
            color: #0077ff;
        }

        .post-date {
            font-size: 12px;
            color: #718096;
            margin-top: 4px;
        }

        .no-posts {
            text-align: center;
            color: #718096;
            font-style: italic;
            padding: 20px 0;
        }

        @media (max-width: 768px) {
            .main-container {
                flex-direction: column;
                max-width: 95%;
            }

            .sidebar {
                position: relative;
                top: 0;
                width: 100%;
                box-shadow: none;
                padding: 0;
                background: #20485e;
            }

            .sidebar ul {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
                background: #20485e;
                padding: 10px;
                border-radius: 12px;
            }

            .sidebar a {
                text-align: center;
                padding: 8px;
                font-size: 14px;
            }

            .content {
                padding: 15px;
            }
            
            .posts-sections-container {
                flex-direction: column;
            }
            
            .faq-section {
                margin: 20px 0;
            }
        }

        