@charset "UTF-8";
/* Colors (adjust if needed) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #fff;
  padding-top: 5rem; /* Reduced from 80px to account for smaller navbar */
}

/* Modern header bar */
.header-bar {
  background: #fff;
  padding: 0.5rem 0; /* Reduced padding */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header-bar .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
  padding: 1.5rem 1rem; /* Reduced padding */
}
.header-bar .logo-container img {
  width: 20rem; /* 400px equivalent in rem */
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-bar .logo-container h1 {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
  margin-left: 1.5rem;
  letter-spacing: -0.5px;
  background: linear-gradient(45deg, #2b7cd3, #2263a9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive design */
@media (max-width: 1200px) {
  .header-bar .logo-container img {
    width: 15rem;
  }
}
@media (max-width: 768px) {
  .header-bar {
    padding: 0.25rem 0;
  }
  .header-bar .logo-container {
    padding: 0.75rem 1rem;
  }
  .header-bar .logo-container img {
    width: 12rem;
  }
  .header-bar .logo-container h1 {
    font-size: 1.6rem;
    margin-left: 1rem;
  }
}
@media (max-width: 480px) {
  .header-bar {
    padding: 0.25rem 0;
  }
  .header-bar .logo-container {
    padding: 0.5rem 1rem;
  }
  .header-bar .logo-container img {
    width: 8rem;
  }
  .header-bar .logo-container h1 {
    font-size: 1.4rem;
    margin-left: 0.75rem;
  }
}
/* Variables (adjust to your brand) */
/* Center content wrapper */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(rgba(32, 53, 88, 0.8), rgba(32, 53, 88, 0.3)), url("./assets/hero.jpg") center center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0;
  width: 100%;
  gap: 3rem;
}
.hero .hero-content .hero-text {
  color: #fff;
  max-width: 50%;
  padding: 0 2rem;
}
.hero .hero-content .hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}
.hero .hero-content .hero-text p {
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
  opacity: 0.9;
}
.hero .hero-content .hero-text .cta-button {
  display: inline-block;
  background-color: #d2376c;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero .hero-content .hero-text .cta-button:hover {
  background-color: #af2756;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.hero .hero-content .hero-image {
  max-width: 45%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  aspect-ratio: 4/3;
}
.hero .hero-content .hero-image:hover {
  transform: translateY(-5px);
}
.hero .hero-content .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .hero {
    min-height: 90vh;
  }
  .hero .hero-content {
    padding: 4rem 0;
    gap: 4rem;
  }
  .hero .hero-content .hero-text h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .hero .hero-content .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .hero .hero-content .hero-text .cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
  .hero .hero-content .hero-image {
    max-width: 40%;
    aspect-ratio: 16/9;
  }
}
/* Medium screens (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero {
    min-height: 85vh;
  }
  .hero .hero-content {
    padding: 3.5rem 0;
    gap: 3.5rem;
  }
  .hero .hero-content .hero-text h1 {
    font-size: 2.8rem;
  }
  .hero .hero-content .hero-text p {
    font-size: 1.1rem;
  }
  .hero .hero-content .hero-image {
    max-width: 45%;
    aspect-ratio: 4/3;
  }
}
/* Small screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero {
    min-height: auto;
    background-attachment: scroll;
  }
  .hero .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 3rem 0;
    gap: 2rem;
  }
  .hero .hero-content .hero-text {
    max-width: 100%;
    padding: 0 1.5rem;
  }
  .hero .hero-content .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero .hero-content .hero-text p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
  }
  .hero .hero-content .hero-image {
    max-width: 70%;
    margin: 0 auto;
    aspect-ratio: 16/9;
  }
}
/* Mobile screens (767px and below) */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    background-attachment: scroll;
  }
  .hero .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 0;
    gap: 1.5rem;
  }
  .hero .hero-content .hero-text {
    max-width: 100%;
    padding: 0 1.25rem;
  }
  .hero .hero-content .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  .hero .hero-content .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero .hero-content .hero-text .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  .hero .hero-content .hero-image {
    max-width: 85%;
    margin: 0 auto;
    border-radius: 12px;
    aspect-ratio: 4/3;
  }
  .hero .hero-content .hero-image img {
    border-radius: 12px;
  }
}
/* Extra small screens (480px and below) */
@media (max-width: 480px) {
  .hero .hero-content {
    padding: 2rem 0;
    gap: 1.25rem;
  }
  .hero .hero-content .hero-text {
    padding: 0 1rem;
  }
  .hero .hero-content .hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .hero .hero-content .hero-text p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  .hero .hero-content .hero-text .cta-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
  .hero .hero-content .hero-image {
    max-width: 90%;
    border-radius: 8px;
    aspect-ratio: 3/2;
  }
  .hero .hero-content .hero-image img {
    border-radius: 8px;
  }
}
/***********************************
 * Testimonial/CTA Section
 ***********************************/
.testimonial-cta {
  background-color: #2b7cd3;
  text-align: center;
  padding: 4rem 0;
  color: #fff;
}
.testimonial-cta .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.testimonial-cta .cta-text {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0 auto 2.5rem;
  max-width: 900px;
}
.testimonial-cta .cta-button {
  display: inline-block;
  background-color: #d2376c;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonial-cta .cta-button:hover {
  background-color: #af2756;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .testimonial-cta {
    padding: 6rem 0;
  }
  .testimonial-cta .cta-text {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  .testimonial-cta .cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
  }
}
/* Medium screens (768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .testimonial-cta {
    padding: 5rem 0;
  }
  .testimonial-cta .cta-text {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
  }
  .testimonial-cta .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}
/* Small screens (767px and below) */
@media (max-width: 767px) {
  .testimonial-cta {
    padding: 3rem 0;
  }
  .testimonial-cta .container {
    padding: 0 1.5rem;
  }
  .testimonial-cta .cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .testimonial-cta .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}
/* Extra small screens (480px and below) */
@media (max-width: 480px) {
  .testimonial-cta {
    padding: 2.5rem 0;
  }
  .testimonial-cta .container {
    padding: 0 1rem;
  }
  .testimonial-cta .cta-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  .testimonial-cta .cta-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}
/* Focused Recovery Section */
.focused-recovery {
  background-color: #0f1f3a;
  color: #ffffff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.focused-recovery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.focused-recovery .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: 100%;
  /* Left Column: Image + Overlay Text */
  /* Right Column: Heading + Paragraph */
}
.focused-recovery .container .left-col {
  position: relative;
  width: 50%;
  border-radius: 0 12px 12px 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 500px;
}
.focused-recovery .container .left-col img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.focused-recovery .container .left-col:hover img {
  transform: scale(1.05);
}
.focused-recovery .container .left-col .overlay-text {
  position: absolute;
  bottom: 10%;
  left: 5%;
  right: 5%;
  background: linear-gradient(to right, rgba(15, 31, 58, 0.9), rgba(15, 31, 58, 0.7));
  padding: 1.5rem;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transform: translateY(0);
  transition: all 0.3s ease;
}
.focused-recovery .container .left-col .overlay-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #ffffff;
  line-height: 1.2;
}
.focused-recovery .container .left-col .overlay-text p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}
.focused-recovery .container .right-col {
  width: 50%;
  padding: 2rem 2rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.focused-recovery .container .right-col h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
  padding-bottom: 1rem;
}
.focused-recovery .container .right-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #d2376c;
}
.focused-recovery .container .right-col h3 strong {
  font-weight: 700;
  color: #d2376c;
}
.focused-recovery .container .right-col p {
  line-height: 1.8;
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.focused-recovery .container .right-col .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.focused-recovery .container .right-col .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.focused-recovery .container .right-col .features-list li::before {
  content: "✓";
  color: #d2376c;
  margin-right: 1rem;
  font-weight: bold;
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .focused-recovery {
    padding: 5rem 0;
  }
  .focused-recovery .container .left-col {
    height: 550px;
  }
  .focused-recovery .container .left-col .overlay-text h2 {
    font-size: 2.2rem;
  }
  .focused-recovery .container .right-col {
    padding: 2.5rem 2.5rem 2.5rem 4rem;
  }
  .focused-recovery .container .right-col h3 {
    font-size: 2rem;
  }
}
/* Medium screens (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .focused-recovery {
    padding: 4.5rem 0;
  }
  .focused-recovery .container .left-col {
    height: 500px;
  }
  .focused-recovery .container .left-col .overlay-text h2 {
    font-size: 2rem;
  }
  .focused-recovery .container .right-col {
    padding: 2rem 2rem 2rem 3rem;
  }
  .focused-recovery .container .right-col h3 {
    font-size: 1.7rem;
  }
}
/* Small screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .focused-recovery {
    padding: 4rem 0;
  }
  .focused-recovery .container .left-col {
    height: 450px;
  }
  .focused-recovery .container .left-col .overlay-text {
    padding: 1.2rem;
  }
  .focused-recovery .container .left-col .overlay-text h2 {
    font-size: 1.8rem;
  }
  .focused-recovery .container .right-col {
    padding: 1.5rem 1.5rem 1.5rem 2rem;
  }
  .focused-recovery .container .right-col h3 {
    font-size: 1.6rem;
  }
}
/* Mobile screens (767px and below) */
@media (max-width: 767px) {
  .focused-recovery {
    padding: 3.5rem 0;
  }
  .focused-recovery .container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  .focused-recovery .container .left-col,
  .focused-recovery .container .right-col {
    width: 100%;
  }
  .focused-recovery .container .left-col {
    height: 350px;
    margin-bottom: 2rem;
    border-radius: 12px;
  }
  .focused-recovery .container .left-col .overlay-text {
    position: static;
    background: #0f1f3a;
    margin-top: 1rem;
    padding: 1.5rem;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .focused-recovery .container .left-col .overlay-text h2 {
    font-size: 1.8rem;
  }
  .focused-recovery .container .right-col {
    padding: 0;
  }
  .focused-recovery .container .right-col h3 {
    font-size: 1.5rem;
    padding-bottom: 0.8rem;
  }
  .focused-recovery .container .right-col h3::after {
    width: 40px;
  }
  .focused-recovery .container .right-col p {
    font-size: 1rem;
  }
  .focused-recovery .container .right-col .features-list li {
    font-size: 1rem;
  }
}
/* Extra small screens (480px and below) */
@media (max-width: 480px) {
  .focused-recovery {
    padding: 3rem 0;
  }
  .focused-recovery .container .left-col {
    height: 300px;
  }
  .focused-recovery .container .left-col .overlay-text {
    padding: 1.2rem;
  }
  .focused-recovery .container .left-col .overlay-text h2 {
    font-size: 1.5rem;
  }
  .focused-recovery .container .left-col .overlay-text p {
    font-size: 1rem;
  }
  .focused-recovery .container .right-col h3 {
    font-size: 1.4rem;
  }
  .focused-recovery .container .right-col p {
    font-size: 0.95rem;
  }
  .focused-recovery .container .right-col .features-list li {
    font-size: 0.95rem;
  }
}
/* Benefits Section */
.benefits {
  background-color: #fff;
  padding: 4rem 0;
}
.benefits .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 0 2rem;
}
.benefits .container .benefit-item {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefits .container .benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.benefits .container .benefit-item .icon-circle {
  width: 60px;
  height: 60px;
  border: 2px solid #017eea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(1, 126, 234, 0.1);
}
.benefits .container .benefit-item .icon-circle .material-icons {
  font-size: 30px;
  color: #017eea;
}
.benefits .container .benefit-item h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}
.benefits .container .benefit-item p {
  color: #333;
  line-height: 1.6;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .benefits {
    padding: 5rem 0;
  }
  .benefits .container {
    gap: 4rem;
    padding: 0 3rem;
  }
  .benefits .container .benefit-item {
    padding: 2.5rem;
  }
  .benefits .container .benefit-item h3 {
    font-size: 1.5rem;
  }
  .benefits .container .benefit-item p {
    font-size: 1.2rem;
  }
}
/* Medium screens (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .benefits {
    padding: 4.5rem 0;
  }
  .benefits .container {
    gap: 3rem;
    padding: 0 2.5rem;
  }
}
/* Small screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .benefits {
    padding: 4rem 0;
  }
  .benefits .container {
    gap: 2.5rem;
    padding: 0 2rem;
  }
}
/* Mobile screens (767px and below) */
@media (max-width: 767px) {
  .benefits {
    padding: 3.5rem 0;
  }
  .benefits .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  .benefits .container .benefit-item {
    padding: 1.5rem;
  }
  .benefits .container .benefit-item h3 {
    font-size: 1.3rem;
  }
  .benefits .container .benefit-item p {
    font-size: 1rem;
  }
}
/* Extra small screens (480px and below) */
@media (max-width: 480px) {
  .benefits {
    padding: 3rem 0;
  }
  .benefits .container {
    padding: 0 1rem;
    gap: 1.5rem;
  }
  .benefits .container .benefit-item {
    padding: 1.25rem;
  }
  .benefits .container .benefit-item .icon-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  .benefits .container .benefit-item .icon-circle .material-icons {
    font-size: 24px;
  }
  .benefits .container .benefit-item h3 {
    font-size: 1.2rem;
  }
  .benefits .container .benefit-item p {
    font-size: 0.95rem;
  }
}
/* "How We Do" Section */
.how-we-do {
  background-color: #f7f7f7;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.how-we-do::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}
.how-we-do .container {
  position: relative;
  z-index: 1;
}
.how-we-do h2 {
  font-size: 2.2rem;
  color: #1c1c1c;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.how-we-do h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #d2376c;
}
.how-we-do p {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  padding: 0 2rem;
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .how-we-do {
    padding: 5rem 0;
  }
  .how-we-do h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .how-we-do p {
    font-size: 1.3rem;
    max-width: 900px;
  }
}
/* Medium screens (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .how-we-do {
    padding: 4.5rem 0;
  }
  .how-we-do h2 {
    font-size: 2.3rem;
  }
  .how-we-do p {
    font-size: 1.2rem;
    max-width: 850px;
  }
}
/* Small screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .how-we-do {
    padding: 4rem 0;
  }
  .how-we-do h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  .how-we-do p {
    font-size: 1.1rem;
    max-width: 700px;
    padding: 0 1.5rem;
  }
}
/* Mobile screens (767px and below) */
@media (max-width: 767px) {
  .how-we-do {
    padding: 3.5rem 0;
  }
  .how-we-do h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .how-we-do h2::after {
    width: 50px;
    bottom: -8px;
  }
  .how-we-do p {
    font-size: 1rem;
    padding: 0 1.25rem;
    line-height: 1.6;
  }
}
/* Extra small screens (480px and below) */
@media (max-width: 480px) {
  .how-we-do {
    padding: 3rem 0;
  }
  .how-we-do h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }
  .how-we-do h2::after {
    width: 40px;
    bottom: -6px;
  }
  .how-we-do p {
    font-size: 0.95rem;
    padding: 0 1rem;
    line-height: 1.5;
  }
}
/* Team Section */
.team-section {
  background-color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  /* Section Heading */
  /* Team Cards Grid */
  /* CTA Button */
}
.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}
.team-section .container {
  position: relative;
  z-index: 1;
}
.team-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #1c1c1c;
  margin-bottom: 3rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.team-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #d2376c;
}
.team-section .team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 0 2rem;
  margin-bottom: 3rem;
}
.team-section .team-cards .team-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-section .team-cards .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.team-section .team-cards .team-card img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 3px solid #d2376c;
  padding: 3px;
}
.team-section .team-cards .team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #1c1c1c;
  font-weight: 600;
}
.team-section .team-cards .team-card span {
  display: block;
  font-weight: 600;
  color: #d2376c;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.team-section .team-cards .team-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
.team-section .cta-button {
  display: inline-block;
  background-color: #d2376c;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.team-section .cta-button:hover {
  background-color: #af2756;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .team-section {
    padding: 5rem 0;
  }
  .team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
  .team-section .team-cards {
    gap: 3rem;
    padding: 0 3rem;
  }
  .team-section .team-cards .team-card {
    padding: 2.5rem;
  }
  .team-section .team-cards .team-card img {
    width: 180px;
    height: 180px;
  }
  .team-section .team-cards .team-card h3 {
    font-size: 1.5rem;
  }
  .team-section .team-cards .team-card span {
    font-size: 1.2rem;
  }
  .team-section .team-cards .team-card p {
    font-size: 1.1rem;
  }
  .team-section .cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
}
/* Medium screens (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .team-section {
    padding: 4.5rem 0;
  }
  .team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 3.5rem;
  }
  .team-section .team-cards {
    gap: 2.5rem;
    padding: 0 2.5rem;
  }
  .team-section .team-cards .team-card {
    padding: 2rem;
  }
  .team-section .team-cards .team-card img {
    width: 160px;
    height: 160px;
  }
}
/* Small screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .team-section {
    padding: 4rem 0;
  }
  .team-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  .team-section .team-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
  }
  .team-section .team-cards .team-card {
    padding: 1.5rem;
  }
  .team-section .team-cards .team-card img {
    width: 140px;
    height: 140px;
  }
  .team-section .team-cards .team-card h3 {
    font-size: 1.3rem;
  }
  .team-section .team-cards .team-card span {
    font-size: 1.1rem;
  }
}
/* Mobile screens (767px and below) */
@media (max-width: 767px) {
  .team-section {
    padding: 3.5rem 0;
  }
  .team-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
  .team-section h2::after {
    width: 50px;
    bottom: -8px;
  }
  .team-section .team-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  .team-section .team-cards .team-card {
    padding: 1.5rem;
  }
  .team-section .team-cards .team-card img {
    width: 130px;
    height: 130px;
  }
  .team-section .team-cards .team-card h3 {
    font-size: 1.2rem;
  }
  .team-section .team-cards .team-card span {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .team-section .team-cards .team-card p {
    font-size: 0.95rem;
  }
  .team-section .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}
/* Extra small screens (480px and below) */
@media (max-width: 480px) {
  .team-section {
    padding: 3rem 0;
  }
  .team-section h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .team-section h2::after {
    width: 40px;
    bottom: -6px;
  }
  .team-section .team-cards {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .team-section .team-cards .team-card {
    padding: 1.25rem;
  }
  .team-section .team-cards .team-card img {
    width: 120px;
    height: 120px;
  }
  .team-section .team-cards .team-card h3 {
    font-size: 1.1rem;
  }
  .team-section .team-cards .team-card span {
    font-size: 0.95rem;
  }
  .team-section .team-cards .team-card p {
    font-size: 0.9rem;
  }
  .team-section .cta-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
}
/* FAQ Section */
.faq-section {
  background-color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}
.faq-section .container {
  position: relative;
  z-index: 1;
}
.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #1c1c1c;
  margin-bottom: 3rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.faq-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #d2376c;
}
.faq-section .faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.faq-section .faq-item {
  background: #f8f8f8;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.faq-section .faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.faq-section .faq-item .faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}
.faq-section .faq-item .faq-question h3 {
  font-size: 1.2rem;
  color: #1c1c1c;
  margin: 0;
  font-weight: 600;
  flex: 1;
}
.faq-section .faq-item .faq-question .icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-section .faq-item .faq-question .icon::before, .faq-section .faq-item .faq-question .icon::after {
  content: "";
  position: absolute;
  background-color: #d2376c;
  transition: all 0.3s ease;
}
.faq-section .faq-item .faq-question .icon::before {
  width: 2px;
  height: 16px;
  left: 11px;
  top: 4px;
}
.faq-section .faq-item .faq-question .icon::after {
  width: 16px;
  height: 2px;
  left: 4px;
  top: 11px;
}
.faq-section .faq-item .faq-question:hover {
  background-color: rgba(210, 55, 108, 0.05);
}
.faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
  opacity: 0;
  visibility: hidden;
}
.faq-section .faq-item .faq-answer p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  padding: 0 1.5rem;
  margin: 0;
}
.faq-section .faq-item .faq-answer a {
  color: #d2376c;
  text-decoration: none;
  font-weight: 600;
}
.faq-section .faq-item .faq-answer a:hover {
  text-decoration: underline;
}
.faq-section .faq-item.active .faq-question {
  background-color: rgba(210, 55, 108, 0.05);
}
.faq-section .faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}
.faq-section .faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 1.5rem 0;
  opacity: 1;
  visibility: visible;
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .faq-section {
    padding: 5rem 0;
  }
  .faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
  .faq-section .faq-item .faq-question {
    padding: 2rem;
  }
  .faq-section .faq-item .faq-question h3 {
    font-size: 1.3rem;
  }
  .faq-section .faq-item .faq-answer p {
    font-size: 1.1rem;
  }
}
/* Medium screens (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .faq-section {
    padding: 4.5rem 0;
  }
  .faq-section h2 {
    font-size: 2.3rem;
    margin-bottom: 3.5rem;
  }
}
/* Small screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .faq-section {
    padding: 4rem 0;
  }
  .faq-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  .faq-section .faq-container {
    padding: 0 1.5rem;
  }
}
/* Mobile screens (767px and below) */
@media (max-width: 767px) {
  .faq-section {
    padding: 3.5rem 0;
  }
  .faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
  .faq-section h2::after {
    width: 50px;
    bottom: -8px;
  }
  .faq-section .faq-container {
    padding: 0 1.25rem;
  }
  .faq-section .faq-item .faq-question {
    padding: 1.25rem;
  }
  .faq-section .faq-item .faq-question h3 {
    font-size: 1.1rem;
  }
  .faq-section .faq-item .faq-answer p {
    font-size: 0.95rem;
    padding: 0 1.25rem;
  }
}
/* Extra small screens (480px and below) */
@media (max-width: 480px) {
  .faq-section {
    padding: 3rem 0;
  }
  .faq-section h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .faq-section h2::after {
    width: 40px;
    bottom: -6px;
  }
  .faq-section .faq-container {
    padding: 0 1rem;
  }
  .faq-section .faq-item .faq-question {
    padding: 1rem;
  }
  .faq-section .faq-item .faq-question h3 {
    font-size: 1rem;
  }
  .faq-section .faq-item .faq-answer p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}
/* Form Section */
.info-form {
  position: relative;
  background: linear-gradient(rgba(39, 91, 151, 0.9), rgba(39, 91, 151, 0.7)), url("./assets/form.jpg") center center/cover no-repeat;
  color: #fff;
  padding: 5rem 0;
  overflow: hidden;
}
.info-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.info-form .info-form-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.info-form .info-form-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}
.info-form .info-form-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #d2376c;
}
.info-form .info-form-content p {
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-size: 1.1rem;
  opacity: 0.9;
}
.info-form .info-form-content .form-box {
  background: #fff;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-form .info-form-content .form-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.info-form .info-form-content .form-box form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.info-form .info-form-content .form-box form .form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.info-form .info-form-content .form-box form .form-group label {
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #555;
  transition: color 0.3s ease;
}
.info-form .info-form-content .form-box form .form-group input,
.info-form .info-form-content .form-box form .form-group select,
.info-form .info-form-content .form-box form .form-group textarea {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}
.info-form .info-form-content .form-box form .form-group input:focus,
.info-form .info-form-content .form-box form .form-group select:focus,
.info-form .info-form-content .form-box form .form-group textarea:focus {
  outline: none;
  border-color: #d2376c;
  box-shadow: 0 0 0 3px rgba(210, 55, 108, 0.1);
  background-color: #fff;
}
.info-form .info-form-content .form-box form .form-group input::-moz-placeholder, .info-form .info-form-content .form-box form .form-group select::-moz-placeholder, .info-form .info-form-content .form-box form .form-group textarea::-moz-placeholder {
  color: #999;
}
.info-form .info-form-content .form-box form .form-group input::placeholder,
.info-form .info-form-content .form-box form .form-group select::placeholder,
.info-form .info-form-content .form-box form .form-group textarea::placeholder {
  color: #999;
}
.info-form .info-form-content .form-box form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.info-form .info-form-content .form-box form .radio-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.info-form .info-form-content .form-box form .radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: normal;
  margin: 0;
  color: #333;
}
.info-form .info-form-content .form-box form .radio-group label input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.info-form .info-form-content .form-box form .radio-group label input[type=radio]:checked {
  border-color: #d2376c;
  background-color: #d2376c;
  box-shadow: inset 0 0 0 3px #fff;
}
.info-form .info-form-content .form-box form .form-textarea {
  grid-column: 1/3;
}
.info-form .info-form-content .form-box form .btn-submit {
  grid-column: 1/3;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  background-color: #d2376c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}
.info-form .info-form-content .form-box form .btn-submit:hover {
  background-color: #af2756;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(210, 55, 108, 0.3);
}
.info-form .info-form-content .form-box form .btn-submit:active {
  transform: translateY(0);
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .info-form {
    padding: 6rem 0;
  }
  .info-form .info-form-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .info-form .info-form-content p {
    font-size: 1.2rem;
    margin-bottom: 4rem;
  }
  .info-form .info-form-content .form-box {
    padding: 4rem;
  }
}
/* Medium screens (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .info-form {
    padding: 5rem 0;
  }
  .info-form .info-form-content h2 {
    font-size: 2.5rem;
  }
  .info-form .info-form-content .form-box {
    padding: 3.5rem;
  }
}
/* Small screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .info-form {
    padding: 4rem 0;
  }
  .info-form .info-form-content h2 {
    font-size: 2.2rem;
  }
  .info-form .info-form-content .form-box {
    padding: 2.5rem;
  }
}
/* Mobile screens (767px and below) */
@media (max-width: 767px) {
  .info-form {
    padding: 3.5rem 0;
  }
  .info-form .info-form-content {
    padding: 0 1.5rem;
  }
  .info-form .info-form-content h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  .info-form .info-form-content h2::after {
    width: 50px;
    bottom: -8px;
  }
  .info-form .info-form-content p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .info-form .info-form-content .form-box {
    padding: 2rem;
    border-radius: 12px;
  }
  .info-form .info-form-content .form-box form {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .info-form .info-form-content .form-box form .form-textarea,
  .info-form .info-form-content .form-box form .btn-submit {
    grid-column: 1;
  }
}
/* Extra small screens (480px and below) */
@media (max-width: 480px) {
  .info-form {
    padding: 3rem 0;
  }
  .info-form .info-form-content {
    padding: 0 1rem;
  }
  .info-form .info-form-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .info-form .info-form-content h2::after {
    width: 40px;
    bottom: -6px;
  }
  .info-form .info-form-content p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .info-form .info-form-content .form-box {
    padding: 1.5rem;
  }
  .info-form .info-form-content .form-box form {
    gap: 1rem;
  }
  .info-form .info-form-content .form-box form .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  .info-form .info-form-content .form-box form .form-group input,
  .info-form .info-form-content .form-box form .form-group select,
  .info-form .info-form-content .form-box form .form-group textarea {
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
  }
  .info-form .info-form-content .form-box form .btn-submit {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}/*# sourceMappingURL=styles.css.map */