.stats-section {
    padding: 70px 20px 60px;
}

.offices-section{
    padding-top:0px;
}


.hero-section{
    height:600px;
}
.hero-right-image{
        align-items: center;
}

.hero-left p{
    margin-right:50px;
}

.section-content{
    font-size:16px;
    font-weight:400;
    color:#000;
    margin: 0 auto;
    width: 780px;
}

.text-center-box .container{
    padding-bottom:40px;
}

.testimonials-section{
    margin-top:80px;
}

/* =================================
   FAQ Page Styles
================================= */

.stat-card{
    background:#FBFBFB;
}
.text-center-box .section-title{
    text-align:center;
}

.container{
    padding:0 20px;
}
.faq-section {
  padding: 30px 0 20px;
  background: #fff;
}

/* Section Header */
.faq-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.faq-main-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 20px;
  line-height: 1.3;
}

.stats-section .cta-btn {
    display: table;
    margin: 30px auto 0;
}

.faq-sidebar-content{
    width:75%;
}

.faq-main-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Flipped Layout - Sidebar moves to right */
.faq-layout.flipped {
  grid-template-columns: 1fr 450px;
}

.faq-layout.flipped .faq-sidebar {
  order: 2;
}

.faq-layout.flipped .faq-main {
  order: 1;
}

/* =================================
   Left Sidebar
================================= */

.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-sidebar-image {
  width: 100%;
  overflow: hidden;
}

.faq-sidebar-image img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-sidebar-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  margin: 0;
}

.faq-sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width:380px;
}

.faq-btn {
  display: block;
  padding: 20px 30px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 0px;
  transition: all 0.3s;
}

.faq-btn.btn-primary {
  background: var(--primary-color);
  color: #fff;
  
}

.faq-btn.btn-primary:hover {
  background: #004d99;
  transform: translateY(-2px);
}

.faq-btn.btn-secondary {
  background: var(--secondary-color);
  color: #fff;
}

.faq-btn.btn-secondary:hover {
  background: #8b3d73;
  transform: translateY(-2px);
}

/* =================================
   FAQ Accordion
================================= */

.faq-main {
  min-width: 0;
}

.faq-section .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.faq-section .faq-item {
  background: #fff;
  border: 1px solid var(--primary-color);
  border-bottom: none;
  border-radius: 0px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-section .faq-item:last-child{
  border: 1px solid var(--primary-color);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
}

.faq-section .faq-question {
  background: #fff;
  font-size: 18px;
  padding: 15px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  color: #2054AC;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  text-align: left;
}

.faq-item.active .faq-question {
  background: #2054AC;
  color: #fff;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #fff;
}

.faq-answer {
  display: none;
  background: #FBFBFB;
  overflow: hidden;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer-content {
  padding: 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #000;
}

.faq-answer-content p {
  margin-bottom: 15px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.no-faqs {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 18px;
}

.testimonials-section {
  background: #FAFAFA;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-layout,
  .faq-layout.flipped {
    grid-template-columns: 320px 1fr;
    gap: 40px;
  }
  
  .faq-layout.flipped {
    grid-template-columns: 1fr 320px;
  }

  .faq-main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 0px 0 60px;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .faq-main-title {
    font-size: 28px;
  }

  .faq-main-desc {
    font-size: 15px;
  }

  .faq-layout,
  .faq-layout.flipped {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-sidebar {
    order: 2 !important;
  }

  .faq-main {
    order: 1 !important;
  }

  .faq-section .faq-question {
    padding: 16px 20px;
    font-size: 16px;
  }

  .faq-answer-content {
    padding: 20px;
    font-size: 14px;
  }
}
