* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  color: #333;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(24, 0, 173, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1800ad;
  text-decoration: none;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #1800ad;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1800ad, #38b6ff);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu .a-cta-button:hover::after {
  width: 0 !important;
}

.a-cta-button {
  color: white !important;
}

.cta-button {
  background-color: #0025cc;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(24, 0, 173, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(24, 0, 173, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #1800ad;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(24, 0, 173, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1800ad;
  text-decoration: none;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #1800ad;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1800ad, #38b6ff);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #1800ad;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu a.active {
  color: #1800ad;
  font-weight: 600;
}

.nav-menu a.active::after {
  width: 100%;
}

.nav-menu .a-cta-button.active::after {
  width: 0 !important;
}

.mobile-nav-menu a.active {
  padding-left: 30px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #4fd3c4;
}

.mobile-nav-menu a.active svg {
  opacity: 1;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1800ad 0%, #38b6ff 100%);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar-content {
  padding: 6rem 2rem 2rem;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.2rem 0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
}

.mobile-nav-menu a svg {
  width: 20px;
  height: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
  padding-left: 30px;
  color: #dfdfdf;
}

.mobile-nav-menu a:hover svg {
  opacity: 1;
}

.mobile-cta {
  margin-top: 2rem;
}

.mobile-cta button {
  width: 100%;
  background: #ffffff;
  color: #1800ad;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-cta button:hover {
  background: #1800ad;
  color: #ffffff;
  transform: translateY(-2px);
}

.mobile-social {
  margin-top: 1rem;
  padding-top: 2rem;
}

.mobile-social-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-social-links {
  display: flex;
  gap: 1rem;
}

.mobile-social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.mobile-social-links a:hover {
  background: #ffffff;
  color: #1800ad;
  transform: translateY(-3px);
}

.mobile-social-links svg {
  width: 20px;
  height: 20px;
}

.stat-label-hero {
  color: #0025cc;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cta-button {
  background-color: #0025cc;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(24, 0, 173, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(24, 0, 173, 0.4);
}

.about-hero {
  margin-top: 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      135deg,
      rgba(24, 0, 173, 0.85) 0%,
      rgba(0, 37, 204, 0.85) 50%,
      rgba(0, 37, 204, 0.95) 100%
    ),
    url("https://plus.unsplash.com/premium_photo-1661776242582-0bb7c580e37e?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=687");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(79, 211, 196, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(56, 182, 255, 0.15) 0%,
      transparent 50%
    );
  z-index: 1;
}

.about-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.about-content-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-content-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text-content h2 {
  font-size: 2.8rem;
  color: #1800ad;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-text-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 2rem;
}

.about-highlights {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.highlight-item {
  display: flex;
  align-items: start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(24, 0, 173, 0.06);
  border-left: 4px solid #38b6ff;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(24, 0, 173, 0.12);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(24, 0, 173, 0.1),
    rgba(56, 182, 255, 0.1)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1800ad;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 26px;
  height: 26px;
}

.highlight-text h4 {
  font-size: 1.15rem;
  color: #1800ad;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.highlight-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.about-visual-content {
  position: relative;
}

.about-image-main {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 0, 173, 0.15);
  position: relative;
}

.about-image-main img {
  width: 100%;
  height: auto;
  display: block;
}

.about-floating-stat {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 2rem 2.5rem;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.floating-stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
  .about-floating-stat {
    background: none;
    backdrop-filter: none;
    padding: 2rem 2.5rem;
    border-radius: 25px;
    box-shadow: none;
    border: none;
    text-align: center;
  }
}

.floating-stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 600;
}

.experience-section {
  padding: 6rem 2rem;
  background: #ffffff;
  position: relative;
}

.experience-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(24, 0, 173, 0.1),
    rgba(56, 182, 255, 0.1)
  );
  color: #1800ad;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(24, 0, 173, 0.1);
}

.section-header h2 {
  font-size: 2.8rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.experience-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 25px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(24, 0, 173, 0.08);
  border: 1px solid rgba(24, 0, 173, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(24, 0, 173, 0.15);
}

.experience-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(24, 0, 173, 0.3);
}

.experience-icon svg {
  width: 45px;
  height: 45px;
}

.experience-card h3 {
  font-size: 1.5rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.experience-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
}

.trust-stats-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1800ad 0%, #38b6ff 100%);
  position: relative;
  overflow: hidden;
}

.trust-stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(79, 211, 196, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
}

.trust-stats-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.trust-stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.trust-stats-header h2 {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.trust-stats-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.stat-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 3rem 2rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.5;
}

.faq-about-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(24, 0, 173, 0.06);
  border: 1px solid rgba(24, 0, 173, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(24, 0, 173, 0.12);
}

.faq-question {
  width: 100%;
  padding: 1.8rem 2.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1800ad;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #0025cc;
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(
    135deg,
    rgba(24, 0, 173, 0.1),
    rgba(56, 182, 255, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: #1800ad;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, #1800ad, #38b6ff);
}

.faq-item.active .faq-icon svg {
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2.5rem 1.8rem;
}

.faq-answer p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.contact-cta-about {
  padding: 6rem 2rem;
  background: #ffffff;
  position: relative;
}

.contact-cta-about-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #1800ad 0%, #38b6ff 100%);
  border-radius: 30px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 0, 173, 0.2);
}

.contact-cta-about-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(79, 211, 196, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
}

.contact-cta-about-content {
  position: relative;
  z-index: 1;
}

.contact-cta-about-content h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-cta-about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta-buttons {
  display: flex;
  gap: 1.5rem;
  align-self: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary-white {
  background: #ffffff;
  color: #1800ad;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cta-primary-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: #4fd3c4;
  color: #ffffff;
}

.cta-secondary-white {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cta-secondary-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.footer {
  background: #0a0052;
  color: #ffffff;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
  width: 100%;
  max-width: 500px;
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #dadada28;
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #4fd3c4;
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #ffffff;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #ffffff !important;
  transform: none !important;
}

.footer-bottom {
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: 1px underline white;
  text-underline-offset: 3px;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8),
      0 0 0 10px rgba(37, 211, 102, 0.2);
  }
}

@media (max-width: 1024px) {
  .about-content-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-floating-stat {
    position: static;
    margin-top: 2rem;
  }

  .experience-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 800px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .about-hero {
    min-height: 50vh;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-content-section,
  .experience-section,
  .trust-stats-section,
  .faq-about-section,
  .contact-cta-about {
    padding: 4rem 1.5rem;
  }

  .section-header h2,
  .about-text-content h2 {
    font-size: 2rem;
  }

  .section-header p,
  .about-text-content p {
    font-size: 1rem;
  }

  .highlight-item {
    padding: 1.2rem;
  }

  .experience-card {
    padding: 2.5rem 2rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .contact-cta-about-container {
    padding: 3rem 2rem;
  }

  .contact-cta-about-content h2 {
    font-size: 2rem;
  }

  .contact-cta-buttons {
    flex-direction: column;
  }

  .faq-question {
    padding: 1.5rem 1.5rem;
    font-size: 1.05rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    height: 35px;
  }

  .about-hero h1 {
    font-size: 1.8rem;
  }

  .section-header h2,
  .about-text-content h2 {
    font-size: 1.8rem;
  }

  .experience-icon {
    width: 80px;
    height: 80px;
  }

  .experience-icon svg {
    width: 40px;
    height: 40px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .contact-cta-about-content h2 {
    font-size: 1.8rem;
  }

  .cta-primary-white,
  .cta-secondary-white {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}
