*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFEEEE;
    
}
  html, body {
  width: 100%;
  overflow-x: hidden; /*  Prevent horizontal scroll */
}

  h1, h2, h3 {
    font-family: 'poppins', sans-serif; 
  }
  
  p {
    font-family: 'roboto', sans-serif; 
  }
  
  button {
    font-family: 'Roboto', sans-serif; 
    font-weight: 500; 
  }

  .header {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  
  .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* cover full screen */
    object-fit: cover;
    z-index: -1;
  }
  
 
header {
  background-color: #f9f9ff;
  padding: 0 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
 
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}
 
/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}
 
.logo img {
  width: 124px;
  height: auto;
}
 
.logo-text {
  background: linear-gradient(45deg, #4285f4, #ea4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 24px;
  font-weight: bold;
}
 
.logo-subtitle {
  color: #666;
  font-size: 14px;
  font-weight: normal;
  margin-left: 5px;
}
 
/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
 
.nav-item {
  position: relative;
}
 
.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}
 
.nav-link:hover {
  color: #4285f4;
}
 
.nav-link.active {
  color: #333;
  font-weight: 500;
}
 
/* Dropdown Arrow */
.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}
 
.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}
 
/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
}
 
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
 
.dropdown-item {
  list-style: none;
}
 
.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
 
.dropdown-link:hover {
  background-color: #f8f9ff;
  color: #4285f4;
  padding-left: 25px;
}
 
/* Contact Button */
.contact-btn {
  background: transparent;
  border: 2px solid #4285f4;
  color: #4285f4;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
 
.contact-btn:hover {
  background-color: #4285f4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}
 
/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
 
.hamburger {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
 
.mobile-toggle.active .hamburger:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
 
.mobile-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}
 
.mobile-toggle.active .hamburger:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
 
/* Tablet Responsive - 768px to 1024px */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .nav-menu {
      gap: 20px;
  }
  
  .nav-link {
      font-size: 15px;
  }
  
  .logo img {
      width: 110px;
  }
  
  .contact-btn {
      padding: 8px 20px;
      font-size: 13px;
  }
}
 
/* Mobile and Small Tablet Responsive - up to 768px */
@media screen and (max-width: 768px) {
  body {
      padding-top: 70px;
  }
  
  header {
      padding: 0 15px;
  }
  
  .mobile-toggle {
      display: flex;
  }
 
  .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: white;
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
      padding: 20px 0;
      gap: 0;
      z-index: 999;
      max-height: calc(100vh - 70px);
      overflow-y: auto;
  }
 
  .nav-menu.active {
      left: 0;
  }
 
  .nav-item {
      width: 100%;
      margin: 10px 0;
  }
 
  .nav-link {
      padding: 15px 20px;
      justify-content: center;
      border-bottom: 1px solid #f0f0f0;
  }
 
  .dropdown {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      background: #f8f9ff;
      margin-top: 10px;
      border-radius: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
  }
 
  .nav-item.dropdown-open .dropdown {
      max-height: 300px;
  }
 
  .nav-item:hover .dropdown {
      max-height: 0;
  }
 
  .nav-item.dropdown-open:hover .dropdown {
      max-height: 300px;
  }
 
  .dropdown-link {
      padding: 10px 40px;
      font-size: 14px;
  }
 
  .dropdown-link:hover {
      padding-left: 40px;
      background-color: #f0f0ff;
  }
 
  .contact-btn {
      margin: 20px auto 10px auto;
      padding: 14px 40px;
      font-size: 16px;
      display: block;
      text-align: center;
      width: fit-content;
      min-width: 140px;
  }
  
  .logo img {
      width: 100px;
  }
  
  .logo-text {
      font-size: 20px;
  }
  
  .logo-subtitle {
      font-size: 12px;
  }
}
 
/* Small Mobile - up to 480px */
@media screen and (max-width: 480px) {
  body {
      padding-top: 60px;
  }
  
  header {
      padding: 0 15px;
  }
 
  nav {
      height: 60px;
  }
 
  .nav-menu {
      top: 60px;
      max-height: calc(100vh - 60px);
  }
  
  .logo img {
      width: 80px;
  }
  
  .logo-text {
      font-size: 18px;
  }
  
  .logo-subtitle {
      display: none;
  }
  
  .nav-link {
      font-size: 16px;
      padding: 12px 15px;
  }
  
  .contact-btn {
      padding: 12px 35px;
      font-size: 15px;
      margin: 15px auto 5px auto;
      display: block;
      width: fit-content;
      min-width: 120px;
  }
}
 
/* Very Small Screens - up to 360px */
@media screen and (max-width: 360px) {
  header {
      padding: 0 10px;
  }
  
  .logo img {
      width: 70px;
  }
  
  .logo-text {
      font-size: 16px;
  }
  
  .hamburger {
      width: 20px;
      height: 2px;
  }
}
 
/* Landscape Mobile Optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .nav-menu {
      padding: 10px 0;
      max-height: calc(100vh - 50px);
  }
  
  .nav-link {
      padding: 10px 20px;
  }
  
  .nav-item {
      margin: 5px 0;
  }
}
 
/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo img {
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
  }
}
 
/* Focus States for Accessibility */
.nav-link:focus,
.dropdown-link:focus,
.contact-btn:focus,
.mobile-toggle:focus {
  outline: 2px solid #4285f4;
  outline-offset: 2px;
}
 
/* Print Styles */
@media print {
  header {
      position: static;
      box-shadow: none;
  }
  
  .mobile-toggle {
      display: none;
  }
  
  .nav-menu {
      position: static;
      flex-direction: row;
      gap: 20px;
      padding: 0;
  }
}
 
  
  .hero-content {
    max-width: 800px;
    text-align: center;
    margin-top: 120px;
  }
  
  .hero-content h1 {
    font-size: 60px;
    font-weight: bold;
    color: #0D0D12;
  }
  
  .hero-content p {
    font-size: 16px;
    color: #0D0D12;
    margin: 20px 0;
    line-height: 1.6;
  }
  
  .cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FFB2B3;
    color: #0D0D12;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    margin-top: 20px;
  }
  
  .cta-btn:hover {
    opacity: 0.8;
  }
  
  /* Mobile menu toggle button (hidden by default on desktop) */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
  }
  
  /* ========================
     Responsive Breakpoints
  =========================== */
  
  /* Tablets */
  @media (max-width: 1024px) {
    .hero-content h1 {
      font-size: 42px;
    }
  
    .nav-links {
      gap: 25px;
    }
  
    .contact-btn {
      padding: 8px 18px;
      font-size: 14px;
    }
  }
  
  /* Mobiles */
  @media (max-width: 768px) {
    .navbar {
      padding: 15px 20px;
    }
  
    .nav-links {
      display: none; /* hide menu by default */
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 20px;
      background: #fff;
      width: 220px;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      z-index: 1000;
    }
  
    .nav-links.active {
      display: flex; /* show when toggled */
    }
  
    .nav-links li {
      margin: 12px 0;
      text-align: right;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .hero-content h1 {
      font-size: 34px;
    }
  
    .hero-content p {
      font-size: 15px;
    }
  }
  
  /* Small Phones */
  @media (max-width: 480px) {
    .hero-content {
      margin-top: 80px;
    }
  
    .hero-content h1 {
      font-size: 28px;
    }
  
    .hero-content p {
      font-size: 14px;
    }
  
    .cta-btn {
      padding: 10px 20px;
      font-size: 14px;
    }
  }
  


/*second section*/
.app-section {
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    display: flex;
    max-width: 1100px;
    align-items: center;
    gap: 40px;
  }
  
  .image-container img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .content {
    flex: 1;
  }
  
  .content h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* =====================
     Responsive Design
  ===================== */
  
  /* Tablets */
  @media (max-width: 1024px) {
    .app-section {
      padding: 70px 40px;
    }
  
    .container {
      gap: 30px;
    }
  
    .content h2 {
      font-size: 24px;
    }
  
    .content p {
      font-size: 15px;
    }
  }
  
  /* Mobiles */
  @media (max-width: 768px) {
    .app-section {
      padding: 50px 20px;
    }
  
    .container {
      flex-direction: column;
      text-align: center;
      gap: 25px;
    }
  
    .image-container img {
      max-width: 100%;
    }
  
    .content h2 {
      font-size: 22px;
    }
  
    .content p {
      font-size: 14px;
    }
  }
  
  /* Small Phones */
  @media (max-width: 480px) {
    .app-section {
      padding: 40px 15px;
    }
  
    .content h2 {
      font-size: 20px;
    }
  
    .content p {
      font-size: 13px;
    }
  }
  

/*third section*/
.choose-flutter {
            text-align: center;
            padding: 50px;
        }

        h2 {
            font-size: 40px;
            margin-bottom: 60px;
            color: #0D0D12;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(2, 600px);
            gap: 20px;
            justify-content: center;
        }

        .card {
            background: #FFEEEE;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: left;
            border: 1px solid #d1d1d1;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
        }

        .card.large {
            width: 600px;
            height: 236px;
        }

        .card.small {
            width: 394px;
            height: 293px;
        }

        .icon img{
            width: 36px;
        }

        h3 {
            font-size: 20px;
            margin: 20px 0;
            color: #0D0D12;
        }

        p {
            font-size: 14px;
            line-height: 1.6;
            color: #0D0D12;
        }

        .small-cards {
            display: grid;
            grid-template-columns: repeat(3, 394px);
            gap: 20px;
            justify-content: center;
            margin-top: 20px;
        }

        /* Responsive Styles for Choose Flutter Section */
        
        /* Large tablets and small laptops (1024px and below) */
        @media screen and (max-width: 1024px) {
            .choose-flutter {
                padding: 40px 20px;
            }
            
            .cards {
                grid-template-columns: repeat(2, 1fr);
                max-width: 1000px;
                margin: 0 auto;
            }
            
            .card.large {
                width: 100%;
                height: auto;
                min-height: 200px;
            }
            
            .small-cards {
                grid-template-columns: repeat(3, 1fr);
                max-width: 1000px;
                margin: 20px auto 0;
            }
            
            .card.small {
                width: 100%;
                height: auto;
                min-height: 250px;
            }
        }

        /* Tablets (768px and below) */
        @media screen and (max-width: 768px) {
            .choose-flutter {
                padding: 30px 15px;
            }
            
            h2 {
                font-size: 32px;
                margin-bottom: 40px;
            }
            
            .cards {
                grid-template-columns: 1fr;
                gap: 15px;
                max-width: 600px;
            }
            
            .card.large {
                min-height: 180px;
            }
            
            .small-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                max-width: 600px;
            }
            
            .card.small {
                min-height: 220px;
            }
            
            h3 {
                font-size: 18px;
                margin: 15px 0;
            }
            
            .icon {
                font-size: 26px;
            }
        }

        /* Mobile devices (640px and below) */
        @media screen and (max-width: 640px) {
            .choose-flutter {
                padding: 25px 10px;
            }
            
            h2 {
                font-size: 28px;
                margin-bottom: 30px;
            }
            
            .cards {
                max-width: 100%;
            }
            
            .card {
                padding: 15px;
            }
            
            .card.large {
                min-height: 160px;
            }
            
            .small-cards {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
            
            .card.small {
                min-height: 180px;
            }
            
            h3 {
                font-size: 16px;
                margin: 12px 0;
            }
            
            p {
                font-size: 13px;
            }
            
            .icon {
                font-size: 24px;
                margin-bottom: 8px;
            }
        }

        /* Extra small devices (480px and below) */
        @media screen and (max-width: 480px) {
            .choose-flutter {
                padding: 20px 8px;
            }
            
            h2 {
                font-size: 24px;
                margin-bottom: 25px;
            }
            
            .card {
                padding: 12px;
            }
            
            .card.large {
                min-height: 140px;
            }
            
            .card.small {
                min-height: 160px;
            }
            
            h3 {
                font-size: 15px;
                margin: 10px 0;
            }
            
            p {
                font-size: 12px;
                line-height: 1.5;
            }
            
            .icon {
                font-size: 22px;
            }
        }

        /* Very small devices (360px and below) */
        @media screen and (max-width: 360px) {
            .choose-flutter {
                padding: 15px 5px;
            }
            
            h2 {
                font-size: 20px;
                margin-bottom: 20px;
            }
            
            .card {
                padding: 10px;
            }
            
            .card.large {
                min-height: 120px;
            }
            
            .card.small {
                min-height: 140px;
            }
            
            h3 {
                font-size: 14px;
                margin: 8px 0;
            }
            
            p {
                font-size: 11px;
            }
            
            .icon {
                font-size: 20px;
            }
        }

/*forth section*/
.unique-section {
            text-align: center;
            padding: 100px 20px;
        }

        .section-title2 {
            font-size: 40px;
            font-weight: 600%;
            color: #0D0D12;
        }

        .section-subtitle {
            font-size: 16px;
            color: #0D0D12;
            margin-bottom: 40px;
            margin-top: 20px;
        }

        .unique-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }

        .unique-item {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .unique-item:nth-child(4){
            align-items: center;
            justify-content: center;
            grid-column: span 1;
        }

        .unique-item:nth-child(5){
            align-items: center;
            justify-content: center;
            grid-column: span 1;
        }

        .unique-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .unique-image {
            width: 100%;
            max-height: 150px;
            object-fit: cover;
            border-radius: 5px;
        }

        .unique-title {
            font-size: 16px;
            color: #0D0D12;
            margin: 15px 0 10px;
        }

        .unique-description {
            font-size: 14px;
            color: #0D0D12;
        }

        /* Responsive Styles for Unique Section */
        
        /* Large tablets and small laptops (1024px and below) */
        @media screen and (max-width: 1024px) {
            .unique-section {
                padding: 80px 15px;
            }
            
            .unique-grid {
                gap: 30px;
                max-width: 900px;
            }
            
            .section-title2 {
                font-size: 36px;
            }
            
            .section-subtitle {
                font-size: 15px;
                margin-bottom: 35px;
            }
            
            .unique-item {
                padding: 18px;
            }
            
            .unique-image {
                max-height: 140px;
            }
        }

        /* Tablets (768px and below) */
        @media screen and (max-width: 768px) {
            .unique-section {
                padding: 60px 10px;
            }
            
            .unique-grid {
                grid-template-columns: 1fr 1fr;
                gap: 25px;
                max-width: 600px;
            }
            
            .section-title2 {
                font-size: 32px;
            }
            
            .section-subtitle {
                font-size: 14px;
                margin-bottom: 30px;
            }
            
            .unique-item {
                padding: 15px;
            }
            
            .unique-item:nth-child(4) {
                grid-column: span 1;
            }
            
            .unique-item:nth-child(5) {
                grid-column: span 1;
            }
            
            .unique-image {
                max-height: 120px;
            }
            
            .unique-title {
                font-size: 15px;
                margin: 12px 0 8px;
            }
            
            .unique-description {
                font-size: 13px;
            }
        }

        /* Mobile devices (640px and below) */
        @media screen and (max-width: 640px) {
            .unique-section {
                padding: 50px 8px;
            }
            
            .unique-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 100%;
                padding: 0 5px;
            }
            
            .section-title2 {
                font-size: 28px;
            }
            
            .section-subtitle {
                font-size: 13px;
                margin-bottom: 25px;
                margin-top: 15px;
            }
            
            .unique-item {
                padding: 12px;
            }
            
            .unique-item:nth-child(4) {
                grid-column: span 1;
            }
            
            .unique-item:nth-child(5) {
                grid-column: span 1;
            }
            
            .unique-image {
                max-height: 100px;
            }
            
            .unique-title {
                font-size: 14px;
                margin: 10px 0 6px;
            }
            
            .unique-description {
                font-size: 12px;
            }
        }

        /* Extra small devices (480px and below) */
        @media screen and (max-width: 480px) {
            .unique-section {
                padding: 40px 5px;
            }
            
            .section-title2 {
                font-size: 24px;
            }
            
            .section-subtitle {
                font-size: 12px;
                margin-bottom: 20px;
            }
            
            .unique-item {
                padding: 10px;
            }
            
            .unique-image {
                max-height: 90px;
            }
            
            .unique-title {
                font-size: 13px;
                margin: 8px 0 5px;
            }
            
            .unique-description {
                font-size: 11px;
                line-height: 1.4;
            }
        }

        /* Very small devices (360px and below) */
        @media screen and (max-width: 360px) {
            .unique-section {
                padding: 30px 3px;
            }
            
            .section-title2 {
                font-size: 20px;
            }
            
            .section-subtitle {
                font-size: 11px;
                margin-bottom: 15px;
            }
            
            .unique-item {
                padding: 8px;
            }
            
            .unique-image {
                max-height: 80px;
            }
            
            .unique-title {
                font-size: 12px;
                margin: 6px 0 4px;
            }
            
            .unique-description {
                font-size: 10px;
                line-height: 1.3;
            }
        }


.faq-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    margin-bottom: 100px;
    margin-top: 100px;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #f5f0f0;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    position: relative;
}

.faq-question-text {
    font-size: 16px;
    padding-right: 40px;
    color: #0D0D12;
}

.faq-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: #333;
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    width: 2px;
    height: 16px;
    transform: rotate(90deg);
}

.faq-toggle::after {
    width: 16px;
    height: 2px;
}

.faq-item.active .faq-toggle::before {
    transform: rotate(0);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer-text {
    color: #666;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        margin: 30px auto;
    }
    
    .faq-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question-text {
        font-size: 15px;
        padding-right: 30px;
    }

    .faq-toggle {
        right: 15px;
        width: 16px;
        height: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
}

/* Footer Styles */
.footer {
    background-color: #f8f9ff;
    padding: 60px 0 30px 0;
    color: #333;
  }
   
  .footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
  }
   
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
  }
   
  /* Company Info Section */
  .footer-company {
    grid-column: span 1;
  }
   
  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }
   
  .footer-logo img {
    width: 120px;
    height: auto;
    margin-right: 10px;
  }
   
  .company-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
   
  /* Social Media Icons */
  .social-media {
    display: flex;
    gap: 15px;
    align-items: center;
  }
   
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    color: white;
  }
   
  .social-icon.linkedin {
    background-color: #0077b5;
  }
   
  .social-icon.twitter {
    background-color: #000;
  }
   
  .social-icon.facebook {
    background-color: #1877f2;
  }
   
  .social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  }
   
  .social-icon.threads {
    background-color: #000;
  }
   
  .social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
   
  /* Footer Sections */
  .footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
   
  .footer-links {
    list-style: none;
  }
   
  .footer-links li {
    margin-bottom: 12px;
  }
   
  .footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
  }
   
  .footer-links a:hover {
    color: #4285f4;
    padding-left: 5px;
  }
   
  /* Contact Section */
  .contact-infos {
    list-style: none;
  }
   
  .contact-infos li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #666;
    font-size: 15px;
  }
   
  .contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    color: #4285f4;
  }
   
  .contact-text {
    line-height: 1.5;
  }
   
  /* Footer Bottom */
  .footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    text-align: center;
  }
   
  .copyright {
    color: #666;
    font-size: 14px;
    font-weight: 500;
  }
   
  /* Tablet Styles */
  @media screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
   
    .footer-company {
        grid-column: span 1;
    }
   
    .footer-container {
        padding: 0 30px;
    }
  }
   
  /* Mobile Styles */
  @media screen and (max-width: 768px) {
    .footer {
        padding: 40px 0 20px 0;
    }
   
    .footer-container {
        padding: 0 20px;
    }
   
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
   
    .footer-company {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 20px;
    }
   
    .company-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
   
    .social-media {
        justify-content: center;
    }
   
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }
   
    .footer-links a {
        font-size: 14px;
    }
   
    .contact-infos li {
        font-size: 14px;
        margin-bottom: 15px;
    }
   
    .contact-icon {
        width: 18px;
        height: 18px;
    }
  }
   
  /* Small Mobile Styles */
  @media screen and (max-width: 480px) {
    .footer {
        padding: 30px 0 15px 0;
    }
   
    .footer-container {
        padding: 0 15px;
    }
   
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
   
    .footer-company {
        grid-column: span 1;
        margin-bottom: 15px;
    }
   
    .footer-logo img {
        width: 100px;
    }
   
    .company-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
   
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
   
    .footer-section {
        text-align: center;
    }
   
    .footer-links a {
        padding: 8px 0;
    }
   
    .contact-infos li {
        justify-content: flex-start;
        text-align: left;
    }
   
    .copyright {
        font-size: 13px;
        padding: 0 10px;
    }
  }
   
  /* Very Small Screens */
  @media screen and (max-width: 360px) {
    .footer-container {
        padding: 0 10px;
    }
   
    .social-media {
        gap: 10px;
    }
   
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
   
    .contact-infos li {
        margin-bottom: 12px;
    }
  }
   
  /* Landscape Mobile */
  @media screen and (max-height: 500px) and (orientation: landscape) {
    .footer {
        padding: 20px 0 10px 0;
    }
   
    .footer-content {
        margin-bottom: 15px;
    }
   
    .footer-section h3 {
        margin-bottom: 15px;
    }
  }
   
