* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Navbar background */
.custom-navbar {
    background: white;
}

.custom-navbar .container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.logo-img {
    height: 60px;
    width: 200px;
}

.navbar-nav .nav-link {
    display: inline-block;
    font-weight: 700;
    font-size: 17px;
    color: #212020;
    position: relative;
    padding-bottom: 5px;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #ff4b4b;
    transition: width 0.35s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;    
}

.custom-btn {
    border: 1px solid #000;   
    padding: 10px 35px;
    font-weight: 700;
    background: white;
    text-decoration: none;
    border-radius: 7px;
    color: #000;
    transition: all 0.35s ease;
}

.custom-btn:hover {
    background: #000;
    color: #fff;
}

/* Prevent toggler + contact button from touching */
@media (max-width: 992px) {
    .custom-navbar .container {
        justify-content: space-between !important;
    }

    /* Reduce button size */
    .custom-btn {
        padding: 6px 18px !important;
        font-size: 14px !important;
    }
}

/* FIX for 770px–991px only */
@media (min-width: 770px) and (max-width: 991px) {

    /* Keep spacing so nothing touches */
    .custom-navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between !important;
        gap: 20px;
        flex-wrap: nowrap !important;
    }

    /* Reduce logo so layout has extra room */
    .logo-img {
        width: 150px !important;
        height: auto;
    }

    /* Prevent contact button from growing */
    .custom-btn {
        padding: 6px 18px !important;
        font-size: 13px !important;
        white-space: nowrap;
        max-width: 130px !important;   /* stops width increase */
    }

    /* Keep toggler spacing correct */
    .navbar-toggler {
        padding: 3px 6px !important;
        margin-left: auto;    /* pushes toggler away from logo */
    }
}


/* Keep Logo + Toggler + Contact Button in one row */
@media (max-width: 768px) {

    /* Allow spacing between all three items */
    .custom-navbar .container {
        flex-wrap: nowrap !important;
        gap: 12px;
    }

    /* Make button smaller so it fits comfortably */
     .custom-btn {
        display: none !important;
    }

    /* Make logo smaller to free space */
    .logo-img {
        width: 130px;
        height: auto;
        margin-right: 10px !important;
    }

    /* Reduce toggler size spacing */
    .navbar-toggler {
        padding: 3px 6px;
        margin-left: 10px !important; 
    }
}


/* For narrower phones (below 576px) */
@media (max-width: 576px) {

    .custom-navbar .container {
        gap: 8px !important;
    }

    .custom-btn {
        display: none !important;
    }

    .logo-img {
        width: 115px;
    }
}

/* TEAM-SECTION */

/* Section */
/* Main Section */
.faq-team-section {
    background: url("../images/happy-female-colleagues-talking-business-meeting-office4-min.jpg")
                center/cover no-repeat;
    padding: 200px 0 160px;
    min-height: 760px;
    position: relative;
}

/* Dark Overlay */
.faq-team-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

/* Content Above Overlay */
.faq-team-section .faq-container {
    position: relative;
    z-index: 2;
}

/* Title */
.faq-team-title {
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

/* Subtitle */
.faq-team-subtitle {
    font-size: 20px;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================= */
/*        RESPONSIVE PART        */
/* ============================= */

/* Large Tablets */
@media (max-width: 992px) {
    .faq-team-title {
        font-size: 55px;
    }
    .faq-team-subtitle {
        font-size: 18px;
    }
    .faq-team-section {
        padding: 160px 0 140px;
        min-height: 600px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .faq-team-title {
        font-size: 45px;
    }
    .faq-team-subtitle {
        font-size: 17px;
        max-width: 90%;
    }
    .faq-team-section {
        padding: 140px 0 120px;
        min-height: 520px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .faq-team-title {
        font-size: 32px;
        line-height: 1.2;
    }
    .faq-team-subtitle {
        font-size: 16px;
        line-height: 1.5;
        max-width: 95%;
    }
    .faq-team-section {
        padding: 120px 0 100px;
        min-height: 480px;
    }
}



/* QUESTION-SECTION */
.faq-question-section {
  background: #263231 !important;
  padding: 60px 15px;
}

/* Container width */
.faq-question-section .container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq-title {
  font-size: 40px;
}

/* Accordion item */
.faq-question-accordion .accordion-item {
  border: none;
  border-bottom: 6px solid #263231;
  background: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
}

/* Question button */
.faq-question-accordion .accordion-button {
  background: #ffffff;
  font-weight: 600;
  padding: 25px 30px;
  font-size: 17px;
  color: #000;
  border: none !important;
  box-shadow: none !important;
}

.faq-question-accordion .accordion-button:not(.collapsed) {
  background: #ffffff;
  color: #000;
}

/* Plus / minus icons */
.faq-question-accordion .accordion-button::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #777;
  background-image: none !important;
}

.faq-question-accordion .accordion-button:not(.collapsed)::after {
  content: '−';
  font-size: 30px;
  margin-top: -3px;
  color: #999;
}

/* Answer */
.faq-question-accordion .accordion-body {
  font-size: 17px;
  padding: 30px;
  line-height: 1.8;
  background: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question-section h2 {
    font-size: 24px;
  }

  .faq-question-section p {
    font-size: 14px;
  }

  .faq-question-accordion .accordion-button {
    font-size: 15px;
    padding: 15px;
  }

  .faq-question-accordion .accordion-body {
    font-size: 14px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .faq-question-section h2 {
    font-size: 20px;
  }

  .faq-question-accordion .accordion-button {
    font-size: 14px;
    padding: 12px;
  }

  .faq-question-accordion .accordion-body {
    font-size: 13px;
    padding: 12px;
  }
}
