/* Info Center & Pages General Styles */



.info-center-container {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.mobileFAQ {
    background: #181b30;
}

.col-8 {
    background: #181b30;
}

.row {
    background: #181b30;
}

.info-sidebar {
    width: 300px;
    flex-shrink: 0;
    background: #181b30;
    border-radius: 10px;
    overflow: hidden;
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 1px solid #181b30;
}

.sidebar-header {
    background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.sidebar-header h3 {
    color: #fff;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sidebar-header .main-toggle-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    display: none;
}

.sidebar-menu {
    padding: 15px 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    overflow: hidden;
}

.sidebar-menu.collapsed {
    max-height: 0 !important;
    opacity: 0 !important;
    padding: 0;
}

.menu-category {
    margin-bottom: 10px;
}

.category-title {
    color: #fff;
    font-size: 14px;
    padding: 12px 20px;
    margin: 0;
    background: #08fcfc14;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    position: relative;
}

.category-title i {
    font-size: 16px;
    color: #08fcfc;
}

.category-title .toggle-icon {
    margin-left: auto;
    font-size: 14px;
    transition: transform 0.3s ease;
    display: none;
}

.category-links {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    overflow: hidden;
}

.category-links.collapsed {
    max-height: 0 !important;
    opacity: 0 !important;
}

.category-links li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.category-links li:last-child {
    border-bottom: none;
}

.category-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 40px;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.category-links a:hover {
    background: #08fcfc26;
    color: #08fcfc;
    padding-left: 45px;
}

.category-links a.active {
    background: #08fcfc30;
    color: #08fcfc;
    font-weight: 600;
}

.category-links a i {
    font-size: 10px;
}

.info-content {
    flex: 1;
    min-width: 0;
}

.content-header {
    text-align: center;
    margin-bottom: 40px;
    background: #181b30;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #181b30;
}

.content-header h1 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.content-header .lead {
    font-size: 18px;
    color: #a0a0a0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.info-card {
    background: #181b30;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid #181b30;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #08fcfc;
    box-shadow: 0 5px 20px #08fcfc3d;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 30px;
    color: #fff;
}

.info-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-card .btn-primary {
    background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-card .btn-primary:hover {
    background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
    transform: scale(1.05);
}

.quick-links-section {
    background: #181b30;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #181b30;
}

.quick-links-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #181b30;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    border: 1px solid #181b30;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
    border-color: #08fcfc;
    color: #fff;
    transform: translateX(5px);
}

.quick-link i {
    font-size: 24px;
    color: #08fcfc;
}

.quick-link:hover i {
    color: #fff;
}

.contact-banner {
    background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
    border-radius: 10px;
    padding: 50px;
    text-align: center;
}

.banner-content h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.banner-content p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 25px;
}

.banner-content .btn-success {
    background: #181b30;
    color: #08fcfc;
    border: none;
    padding: 5px 30px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.banner-content .btn-success:hover {
    background: #252111;
    transform: scale(1.05);
}

/* Page Content Styles */
.pageContent {
    background: #181b30;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #181b30;
}

.pageContent h1._title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #08fcfc;
    font-weight: 700;
}

.pageContent ._text {
    color: #d0d0d0;
    line-height: 1.8;
}

.pageContent h3 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.pageContent h2 {
    color: #fff;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 600;
}

.pageContent h4 {
    color: #e0e0e0;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.pageContent p {
    margin-bottom: 15px;
    color: #d0d0d0;
}

.pageContent ul, .pageContent ol {
    margin-bottom: 20px;
    padding-left: 25px;
    color: #d0d0d0;
}

.pageContent li {
    margin-bottom: 8px;
}

.pageContent table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.pageContent table th,
.pageContent table td {
    padding: 12px;
    border: 1px solid #181b30;
    text-align: left;
    color: #d0d0d0;
}

.pageContent table th {
    background: #181b30;
    font-weight: 600;
    color: #fff;
}

.pageContent a {
    color: #08fcfc;
    text-decoration: none;
}

.pageContent a:hover {
    color: #08fcfc;
    text-decoration: underline;
}

.pageContent strong {
    color: #fff;
    font-weight: 600;
}

.pageContent .ancList a {
    color: #08fcfc;
}

.pageContent .ancList a:hover {
    color: #08fcfc;
}

.pageContent .cms_richtext {
    color: #d0d0d0;
}

.pageContent .ancItem {
    margin-bottom: 30px;
    padding: 20px;
    background: #181b30;
    border-radius: 8px;
    border: 1px solid #181b30;
}

.pageContent .ancItem span {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.pageContent .ancBox {
    margin-top: 20px;
}

.pageContent .ancList {
    background: #181b30;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #181b30;
}

.pageContent .ancList li {
    padding: 8px 0;
    border-bottom: 1px solid #181b30;
}

.pageContent .ancList li:last-child {
    border-bottom: none;
}

.pageContent .ancList a .fas {
    color: #08fcfc;
}

/* Form Elements */
.form-control {
    background: #181b30;
    border: 1px solid #181b30;
    color: #d0d0d0;
    padding: 10px 15px;
    border-radius: 5px;
    width: 100%;
}

.form-control:focus {
    background: #181b30;
    border-color: #08fcfc;
    color: #fff;
    outline: none;
}

.form-control::placeholder {
    color: #6a6a6a;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

.form-label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-control-wrapper {
    width: 100%;
}

/* Buttons */
.btn {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
    border-color: #08fcfc;
    color: #fff;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
    border-color: #08fcfc;
    color: #fff;
}

.btn-success {
    background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
    border-color: #08fcfc;
    color: #fff;
    font-weight: 600;
}

.btn-success:hover {
    background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
    border-color: #08fcfc;
}

.btn-secondary {
    background: #181b30;
    border-color: #181b30;
    color: #d0d0d0;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #3a3a3a;
    border-color: #3a3a3a;
    color: #fff;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Contact Form */
.contact-container {
    background: #181b30;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #181b30;
}

.contact-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #08fcfc;
}

.contact-form .form-row {
    margin-bottom: 20px;
}

.contact-form .submit-wrapper {
    margin-top: 30px;
}

.contact-form .submit-btn {
    background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .submit-btn:hover {
    background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
    transform: scale(1.05);
}

/* Cookie Management */
.cookie-preferences {
    margin: 30px 0;
}

.cookie-category {
    background: #181b30;
    border: 1px solid #181b30;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.cookie-category h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
}

.cookie-switch {
    margin: 15px 0;
}

.cookie-switch label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d0d0d0;
    cursor: pointer;
}

.cookie-switch input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-details {
    font-size: 14px;
    color: #a0a0a0;
    margin-top: 10px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    flex: 1;
    min-width: 150px;
}

/* Responsive */
@media (max-width: 992px) {
    .info-center-container {
        flex-direction: column;
    }

    .info-sidebar {
        width: 100%;
        position: static;
    }

    .info-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .category-title:active {
        background: #08fcfc30;
    }

    .category-links a:hover {
        padding-left: 40px;
    }

    .sidebar-header:active {
        background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
    }
}

@media (max-width: 768px) {
    .content-header h1 {
        font-size: 28px;
    }

    .content-header {
        padding: 20px;
    }

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

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .quick-links-section {
        padding: 20px;
    }

    .contact-banner {
        padding: 30px 20px;
    }

    .pageContent {
        padding: 20px;
    }

    .pageContent h1._title {
        font-size: 24px;
    }

    .info-card {
        padding: 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 24px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }

    .contact-container {
        padding: 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 5px; }
.mb-2 { margin-bottom: 10px; }
.mb-3 { margin-bottom: 15px; }
.mb-4 { margin-bottom: 20px; }
.mb-5 { margin-bottom: 30px; }

.mt-1 { margin-top: 5px; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 20px; }
.mt-5 { margin-top: 30px; }

.mr-1 { margin-right: 5px; }

.clr {
    clear: both;
}

/* List Styles */
.list-unstyled {
    list-style: none;
    padding-left: 0;
}

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

::-webkit-scrollbar-track {
    background: #181b30;
}

::-webkit-scrollbar-thumb {
    background: #181b30;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(228deg, #2F6BFF, #1F4FD8);
}

