.accordion-content a {
    color: #000000BF;
    font-weight: 600;
}

.accordion-content a:hover {
    color: #2B7594;
    text-decoration: underline !important;
    font-weight: 600;
}

.faq-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left Column */
.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.bg-image-section {
    padding: 0px 40px 0 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    /*margin-bottom: 30px;*/
    background-size: 20px 20px;
    position: relative;
}

.bg-image-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

/* Header inside the background section */
.left-header {
    margin-bottom: 40px;
}

.left-header h1 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.left-header p {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.bg-content {
    flex: 1;
}

.bg-content h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.bg-content p {
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.vertical-space {
    /*height: 300px;*/
    flex-shrink: 0;
}

/* .contact-info {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--gray);
} */

.contact-info p {
    /*margin: 0px 0px 0px 20px !important;*/
    color: var(--text-color);
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.05rem;
}

.contact-button:hover {
    background-color: #1d5a70;
    transform: translateY(-2px);
}

/* Right Column */
.right-column {
    flex: 1;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.accordion-item {
    background-color: var(--white);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 20px;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.accordion-header:hover {
    background: var(--light-bg);
}

.accordion-title {
    font-size: 1.25rem;
    color: var(--text-color);
    font-family: 'Proxima Nova Lt';
}

/* Arrow styling */
.accordion-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(-135deg);
}


.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.show {
    max-height: 500px;
    padding: 10px 20px;
}

.accordion-content p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Image styling - positioned as background */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    opacity: 0.1;
    z-index: 0;
}

/* Content overlay on background image */
.content-overlay {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* New Sections */
/*.new-section {*/
/*    margin-top: 40px;*/
/*}*/

.section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--dark-gray);
}

/* Full Width Accordion */
.full-width-accordion {
    /*margin-bottom: 60px;*/
}

/* Half-Half Accordions */
.half-half-accordions {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.half-accordion {
    flex: 1;
}

.half-accordion .accordion-item {
    margin-bottom: 15px;
}

/* Content Styling */
.content-section {
    margin-top: 20px;
    margin-bottom: 30px;
}

.content-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.content-section p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.divider {
    height: 1px;
    background-color: var(--gray);
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        flex-direction: column;
        gap: 60px!important;
    }
    .accordion-content{
        padding: 0px 16px!important;
    }
    .left-column,
    .right-column {
        width: 100%;
    }

    .vertical-space {
        height: 40px;
    }

    .half-half-accordions {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.7rem;
    }
    .new-section{
        margin-top:0px!important;
    }
}

/* p {
    margin-bottom: 1em;
    line-height: 1.6;
} */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.visa-container-horizontal {
    flex-direction: column;
}

.visa-container-horizontal .tabs {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #fff;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid #e0e0e0;
    justify-content: space-between;
}

.visa-container-horizontal .tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    background: #F4F4F4;
    cursor: pointer;
    font-weight: 500;
    color: #2B7594;
    transition: all 0.3s ease;
}

.visa-container-horizontal .tab:hover {
    background-color: #f0f0f0;
}

.visa-container-horizontal .tab.active {
    background-color: #e7e1c7;
    color: #000;
}

.visa-container-horizontal .tab.active::after {
    content: "";
    position: absolute;
    top: -16px;
    left: 40%;
    width: 20%;
    height: 6px;
    background-color: #000;
    border-radius: 3px;
}

.visa-container-horizontal .tab-content {
    padding: 30px 30px 0px 30px!important;
    width: 100%;
}
@media (max-width: 768px) {
    .visa-container-horizontal .tab-content{
        padding: 30px!important;
    }
}
.visa-container-horizontal .has-medium-font-size{
    margin-bottom: 0px!important;
}
.faq-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
}

.faq-left {
    width: 350px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-left h2 {
    font-size: 24px;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.4;
}

.left-inset-bg {
    background: linear-gradient(to bottom right, #eef2f6, #f8fafc);
    height: 200px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.faq-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
    /*margin-bottom: 10px;*/
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.accordion-header.active {
    background-color: #E2DCB7;
}

.accordion-content.active {
    max-height: 500px;
}


.visa-container {
    display: flex;
    margin: 0 auto 100px auto;
}

.tabs {
    display: flex;
    flex-direction: column;
    width: 40%;
    background-color: #fff;
    padding: 60px 40px;
    gap: 20px;
}

.tab {
    position: relative;
    padding: 60px 30px;
    cursor: pointer;
    font-family: 'Proxima Nova Lt';
    color: #2B7594;
    transition: all 0.3s ease;
    background: #F4F4F4;
    font-size: 1.5rem;
}

.tab:hover {
    background-color: #f0f0f0;
}

/* Faulty */
.tab.active {
    background-color: #E2DCB7;
    color: #000;
    font-weight: 600;
}

.tab.active::after {
    content: "";
    position: absolute;
    right: -13px;
    top: 25%;
    height: 50%;
    width: 6px;
    background-color: #000;
    border-radius: 2px;
}

.tab-content {
    padding: 40px;
    flex: 1;
}

.tab-content h3 {
    font-size: 24px;
}

.tab-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 24px!important;
    color: #000000BF;
}

.content.active {
    display: block;
}

.capsule-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.capsule-content.active {
    display: block;
}

/* =========================================
   Assistance Section
   ========================================= */
 
/* Global small-screen container padding (avoid extra x-axis space) */
 @media (max-width: 768px) {
  /*.container {*/
  /*  padding-left: 12px;*/
  /*  padding-right: 12px;*/
  /*  max-width: 100%;*/
  /*}*/
  .cta-section{
      margin: 60px 0px!important;
  }
.accordion-title{
    font-size: 1.125rem!important;
}
.accordion-arrow{
    padding: 4px;
}
  .assistance-section {
    margin: 32px auto;
    padding-left: 0;
    padding-right: 0;
  }
 
  .assistance-bg {
    padding: 0;
    overflow: visible;
  }
.accordion-header{
    padding: 8px 16px!important;
    width: auto!important;
    min-height: 64px!important;
}
  .assistance-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin: 0;
    padding: 0;
  }
 
  .assistance-card {
    display: flex;
    flex-direction: column;    
    gap: 0;
    width: 100%;
    min-width: 0;              
    background-color: #fff;
    box-shadow: none;
    padding: 0;
    overflow: visible;        
    align-items: stretch;
  }
 
  .assistance-card .card-content {
    padding: 16px;
    flex: none;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;        
    gap: 8px;
  }
 
  .assistance-card .card-content > div:first-child {
    margin-bottom: 6px;
  }
 
  .assistance-image {
    order: 2;
    width: 100%;
    flex: none;
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: transparent;
    padding: 0;
  }
 
  .assistance-image img {
    display: block;
    width: 100%;
    height: 100%;            
    /*max-height: 350px;      */
    object-fit: cover;
  }
 
  .assistance-title {
    font-size: 1.05rem;
    margin: 0 0 6px 0;
    line-height: 1.25;
  }
 
  .assistance-text {
    font-size: 0.95rem;
    color: var(--text-color);
    max-width: 100%;
    margin: 0;
  }
 
  .assistance-button {
    margin-top: 8px;
    padding: 10px 14px;
    align-self: flex-start;    
    font-size: 0.95rem;
  }
 
  .assistance-card * {
    max-width: 100%;
    word-wrap: break-word;
    hyphens: auto;
  }
  .assistance-card h3{
      font-size: 1.115rem!important;
  }
  /*.accordion-wrapper{*/
  /*    margin-top: 20px !important;*/
  /*}*/
 
  /*.assistance-card img {*/
  /*  max-width: 100%;*/
  /*  height: auto;*/
  /*}*/
 
  html, body {
    overflow-x: hidden;
  }
} 


/* FAQ */
@media (max-width: 768px) {


    .bg-image-section{
         padding: 0;
        margin: 0;
        box-sizing: border-box !important;
    }


    .faq-left,
    .faq-right {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

}
 