:root {
  --primary-dark: #11112b;
  --primary-light: #d8dce7;
  --accent: #4a6cf7;
  --white: #ffffff;
  --primary: #2563eb;
  --secondary: #00d2ff;
  --dark: #11112b;
  --dark-alt: #1c1c2b;
  --light: #b2f0ff;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --primary-blue: #2563eb;
  --dark-blue: #1e40af;
  --light-blue: #3b82f6;
  --dark-gray: #1f2937;
  --medium-gray: #4b5563;
  --light-gray: #f3f4f6;
  --black: #111827;
  --gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,body {
  color: var(--primary-dark);
  overflow-x: hidden;
  line-height: 1.6;
  background-color: #11112b;
  width: 100%;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  height: 70px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1400px;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
  border-radius: 50px;
  margin: 0 auto;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  top: 10px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 2rem;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo img {
  height: 50px;  /*width : 205*/
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  transition: var(--transition);
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #11112a;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 15px;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-links li:not(:has(.btn)) a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: var(--transition);
}

.nav-links li:not(:has(.btn)) a:hover::after,
.nav-links li:not(:has(.btn)) a.active::after {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  font-size: 0.9rem;
  border: none;
  outline: none;
}

.btn.btn-outline {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background-color: transparent;
}

.btn.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn.btn-solid {
  background-color: var(--primary-blue);
  color: var(--white);
  border: 2px solid var(--primary-blue);
}

.btn.btn-solid:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-gray);
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  color: var(--primary-blue);
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
  .navbar {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 30px;
  }

  body {
    padding-top: 80px;
  }

  .navbar-container {
    padding: 1rem 2rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #11112B;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    border-radius: 0 30px 30px 0;
    transition: var(--transition);
  }
  .nav-links a{
    color: #fff;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 0 0 1.5rem 0;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 10px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo img {
    height: 42px;
    width: 110px;
  }
}

/* Animation for navbar on scroll */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 

/* Hero Section */
.hero {
  background: linear-gradient(rgba(17, 17, 43, 0.9)),
    url("./images/chatbotBg_img.webp");
  color: var(--white);
  padding: 8rem 5% 10rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 50px; /* Added for navbar space */
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--accent), #6a5acd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.subtitle {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.stat-item {
  font-size: 1.1rem;
  position: relative;
  padding: 0 1.5rem;
}

.stat-item:not(:last-child):after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
  opacity: 0.5;
}

.cta-button {
  background: linear-gradient(90deg, var(--accent), #6a5acd);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(74, 108, 247, 0.3);
  border: none;
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(74, 108, 247, 0.4);
}

/* Enhanced Professional Robot */
.robot-container {
  position: absolute;
  bottom: 25px;
  right: 10%;
  width: 200px;
  height: 280px;
  z-index: 1;
}

.robot {
  position: relative;
  width: 100%;
  height: 100%;
  animation: float 6s ease-in-out infinite;
}

.robot-head {
  width: 120px;
  height: 120px;
  background-color: var(--white);
  border-radius: 60px 60px 50px 50px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--primary-light);
}

.robot-face {
  position: relative;
  width: 100%;
  height: 100%;
}

.robot-eyes {
  display: flex;
  justify-content: center;
  padding-top: 35px;
  gap: 15px;
}

.robot-eye {
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  border-radius: 50%;
  position: relative;
  animation: blink 5s infinite;
}

.robot-eye::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  top: 4px;
  left: 4px;
}

.robot-mouth {
  width: 40px;
  height: 10px;
  background-color: var(--accent);
  border-radius: 0 0 20px 20px;
  margin: 15px auto 0;
  position: relative;
  overflow: hidden;
}

.robot-mouth::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  top: 2px;
  left: 0;
}

.robot-body {
  width: 150px;
  height: 140px;
  background-color: var(--white);
  border-radius: 20px;
  margin: -10px auto 0;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--primary-light);
  display: flex;
  justify-content: center;
  align-items: center;
}

.robot-screen {
  width: 110px;
  height: 80px;
  background-color: var(--primary-dark);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.screen-content {
  position: absolute;
  width: 100%;
  height: 100%;
  color: var(--accent);
  font-size: 0.6rem;
  padding: 8px;
  box-sizing: border-box;
  font-family: monospace;
}

.screen-line {
  animation: typing 8s steps(30) infinite;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid var(--accent);
  margin-bottom: 5px;
  display: block;
  width: 0;
}

.robot-arm {
  position: absolute;
  width: 30px;
  height: 80px;
  background-color: var(--white);
  top: 40px;
  border-radius: 15px;
  animation: wave 4s infinite;
  border: 3px solid var(--primary-light);
}

.arm-left {
  left: -20px;
  transform-origin: top center;
}

.arm-right {
  right: -20px;
  transform-origin: top center;
  animation-delay: 0.5s;
}

.robot-base {
  width: 180px;
  height: 30px;
  background-color: var(--white);
  border-radius: 10px;
  margin: -5px auto 0;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary-light);
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes blink {
  0%,
  48%,
  52%,
  100% {
    height: 20px;
  }
  50% {
    height: 5px;
  }
}

@keyframes wave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  75% {
    transform: rotate(-15deg);
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Why Choose Section */
.why-section {
  padding: 6rem 5%;
  background-color: #d8dce7;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent), #6a5acd);
}

.feature-card:hover .feature-icon span {
  color: white;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--white));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-icon span {
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--accent);
}

.feature-card p {
  color: #666;
  font-size: 1rem;
}
/* Footer Hero Section */
.footer-hero-section {
  text-align: center;
  position: relative;
  min-height: 100vh;
  background-color: #11112b;
  background-image: url("Line\ 7.png");
}

.footer-hero-content {
  padding-top: 100px;
}

.footer-hero-content h3 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
}

.footer-hero-content h3 span {
  font-weight: 200;
}

.footer-hero-content h3 em {
  font-weight: 500;
  font-style: italic;
  color: #ffffffcc;
}

/* Footer Styles */
.footer {
  background-color: #11112b;
  color: #ffffff;
  position: relative;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-main {
  padding: 0 20px;
  margin-top: 100px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-img {
  height: 90px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  margin-bottom: 25px;
  line-height: 1.7;
  opacity: 0.8;
  text-align: left;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: white;
  text-align: left;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #3b82f6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #3b82f6;
  padding-left: 5px;
}

.footer-links i {
  margin-right: 8px;
  font-size: 0.8rem;
  color: #3b82f6;
}

.footer-social h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
   margin-right: 57px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #3b82f6;
  transform: translateY(-3px);
}

.contact-info {
  margin-bottom: 30px;
  text-align: left;
}

.contact-item {
  display: flex;
  margin-bottom: 15px;
}

.contact-icon {
  margin-right: 15px;
  color: #3b82f6;
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-text {
  opacity: 0.8;
  line-height: 1.6;
}

.contact-text a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-text a:hover {
  color: #3b82f6;
}

.footer-newsletter h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-align: left;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.9rem;
}

.btn-subscribe {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background: #2563eb;
}

.footer-locations {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.locations-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: white;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.location-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.location-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.location-item h4 {
  color: #3b82f6;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.location-item h4 i {
  margin-right: 10px;
}

.location-item p {
  opacity: 0.8;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: left;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 50px;
}

.bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.copyright {
  margin-bottom: 15px;
  opacity: 0.7;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #3b82f6;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #3498db, #204bc1);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(3, 50, 98, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(3, 50, 98, 0.3);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .footer-logo img {
    height: 70px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col {
    margin-bottom: 40px;
  }

  .footer-title {
    margin-bottom: 20px;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p.subtitle {
    font-size: 1.3rem;
  }

  .robot-container {
    width: 180px;
    height: 250px;
  }
}

@media (max-width: 992px) {
  .navbar {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 30px;
  }

  .hero {
    padding: 6rem 5% 8rem;
    margin-top: 70px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p.subtitle {
    font-size: 1.2rem;
  }

  .stats {
    gap: 1.5rem;
  }

  .stat-item {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .robot-container {
    width: 160px;
    height: 230px;
    bottom: 15px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
   
  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 5rem 5% 7rem;
    margin-top: 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p.subtitle {
    font-size: 1.1rem;
  }

  .stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item:after {
    display: none;
  }

  .robot-container {
    position: relative;
    width: 150px;
    height: 220px;
    margin: 2rem auto 0;
    right: auto;
    bottom: auto;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }


  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 4rem 5% 6rem;
    margin-top: -30px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p.subtitle {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col {
    margin-bottom: 40px;
  }

  .footer-title {
    margin-bottom: 20px;
  }

  .footer-hero-content h3 {
    font-size: 36px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .robot-container {
    width: 130px;
    height: 200px;
  }
  .robot-base {
    margin-left: -15px;
  }

  .section-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 400px){
  .robot-head{
    margin-left: 15px;
  }
}



/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background-color: #11112B;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3b82f6;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close-btn:hover {
  color: #3b82f6;
}

.modal-header h2 {
  color: white;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3b82f6;
}

.modal-content {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.modal-content h3 {
  color: #3b82f6;
  margin-top: 20px;
  text-align: left;
}

.modal-content p {
  margin-bottom: 15px;
  text-align: left;
}

.modal-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}
