.faq-section {
    padding: 80px 20px;
    background: linear-gradient(9deg, #141e4f, #cd6133);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(103, 78, 167, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(103, 78, 167, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #674ea7, #8b7ab8);
    border-radius: 2px;
}

.faq-header p {
    font-size: 18px;
    color: #718096;
    margin-top: 25px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: linear-gradient(135deg, #582fb6 0%, #5e4f86 100%);;
    color: #ffffff;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: linear-gradient(135deg, #5e4f86  0%, #582fb6 100%);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    padding-right: 20px;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px 30px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }

    .faq-header h2 {
        font-size: 32px;
    }

    .faq-header p {
        font-size: 16px;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 20px 20px 25px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 28px;
    }

    .faq-question {
        padding: 18px 15px;
    }

    .faq-question h3 {
        font-size: 15px;
    }
}


/* ========================================
   SCROLLABLE CONTENT SECTION - UPDATED STYLES
   ======================================== */

/* Scrollable Content Section */
.scrollable-content-section {
    padding: 80px 20px;
    background: linear-gradient(9deg, #141e4f, #cd6133);
    position: relative;
    overflow: hidden;
}

.scrollable-content-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(205, 97, 51, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.scrollable-content-section::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: rgba(20, 30, 79, 0.15);
    border-radius: 50%;
    z-index: 0;
}

.scroll-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.scroll-header {
    text-align: center;
    margin-bottom: 50px;
}

.scroll-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-header p {
    font-size: 18px;
    color: #f0f0f0;
    opacity: 0.9;
}

.scroll-wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #cd6133 0%, #bf5a32 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(205, 97, 51, 0.4);
}

.scroll-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #bf5a32 0%, #cd6133 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(205, 97, 51, 0.6);
}

.scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.scroll-btn.scroll-up {
    top: 20px;
}

.scroll-btn.scroll-down {
    bottom: 20px;
}

/* Scrollable Content Area */
.scroll-content {
    max-height: 500px;
    background: #141e4f;
    overflow-y: auto;
    padding: 50px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
.scroll-content::-webkit-scrollbar {
    width: 8px;
}

.scroll-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scroll-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #cd6133, #bf5a32);
    border-radius: 10px;
}

.scroll-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #bf5a32, #cd6133);
}

/* Content Blocks */
.content-block {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e8e8e8;
}

.content-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Typography Styles */
.content-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #141e4f;
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.content-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #cd6133, #bf5a32);
    border-radius: 2px;
}

.content-sub-title {
    font-size: 24px;
    font-weight: 600;
    color: #141e4f;
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 18px;
}

.content-text p strong a {
    color: #cd6133;
    font-weight: 600;
}
.content-text p strong{
    color: #cd6133;
    font-weight: 600;
}

/* Services Table Styling */
.services-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.services-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.services-comparison-table thead {
    background: linear-gradient(135deg, #141e4f 0%, #1a2861 100%);
}

.services-comparison-table thead th {
    color: #ffffff;
    padding: 18px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 3px solid #cd6133;
}

.services-comparison-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.services-comparison-table tbody tr:hover {
    background: #f9f9f9;
    transform: scale(1.01);
}

.services-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.services-comparison-table td {
    padding: 16px 20px;
    font-size: 15px;
    color: #333333;
    vertical-align: top;
}

.services-comparison-table td strong {
    color: #cd6133;
    font-weight: 600;
}

/* Scroll Progress Bar */
.scroll-progress {
    margin-top: 20px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #cd6133, #bf5a32);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .scrollable-content-section {
        padding: 60px 15px;
    }
    
    .scroll-header h2 {
        font-size: 36px;
    }
    
    .scroll-content {
        padding: 40px 30px;
        max-height: 500px;
    }
    
    .content-main-title {
        font-size: 28px;
    }
    
    .content-sub-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .scroll-header h2 {
        font-size: 32px;
    }
    
    .scroll-header p {
        font-size: 16px;
    }
    
    .scroll-content {
        padding: 30px 20px;
        max-height: 450px;
    }
    
    .content-main-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .content-sub-title {
        font-size: 20px;
    }
    
    .content-text p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .scroll-btn {
        width: 45px;
        height: 45px;
        right: 15px;
    }
    
    .scroll-btn.scroll-up {
        top: 15px;
    }
    
    .scroll-btn.scroll-down {
        bottom: 15px;
    }
    
    .services-comparison-table thead th,
    .services-comparison-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .scrollable-content-section {
        padding: 50px 10px;
    }
    
    .scroll-header h2 {
        font-size: 28px;
    }
    
    .scroll-content {
        padding: 25px 15px;
        max-height: 400px;
    }
    
    .content-main-title {
        font-size: 22px;
    }
    
    .content-sub-title {
        font-size: 18px;
    }
    
    .content-text p {
        font-size: 14px;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
        right: 10px;
    }
    
    .services-comparison-table thead th,
    .services-comparison-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .content-block {
        margin-bottom: 35px;
        padding-bottom: 30px;
    }
}

/* Dark Mode Compatibility */
body.dark .scroll-wrapper {
    background: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body.dark .content-main-title,
body.dark .content-sub-title {
    color: #ffffff;
}

body.dark .content-text p {
    color: #d1d1d1;
}

body.dark .services-comparison-table {
    background: #1a1a1a;
}

body.dark .services-comparison-table tbody tr:hover {
    background: #2a2a2a;
}

body.dark .services-comparison-table td {
    color: #d1d1d1;
}

body.dark .content-block {
    border-bottom-color: #333333;
}

body.dark .scroll-content::-webkit-scrollbar-track {
    background: #2a2a2a;
}

