/* Reset and Base Styles */

@font-face {
  font-family: 'Aptos';
  src: url('/fonts/aptos-extrabold.woff2') format('woff2'),
       url('/fonts/aptos-extrabold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'UDDigiKyokasho';
  src: url('/fonts/UDDigiKyokashoN-R.woff2') format('woff2'),
       url('/fonts/UDDigiKyokashoN-R.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Copyright Symbol Styling */
.copyright-symbol {
  font-size: 0.6em;
  vertical-align: super;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  margin-left: 1px;
  line-height: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  flex: 0 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-placeholder {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-placeholder:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000; /* Changed to darker teal color */
  line-height: 1.2;
}

.brand-name2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3ebab1; /* Changed to darker teal color */
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: #3ebab1; /* Changed to darker teal color */
  line-height: 1;
  margin-top: -2px;
}

.sapient-s {
  font-family: 'Aptos', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.5px;
}
.sapient-rest {
  font-family: 'UDDigiKyokasho', 'UD Digi Kyokasho N-R', 'Yu Mincho', serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-item { 
  text-decoration: none; 
  color: #475569; 
  font-weight: 500; 
  font-size: 0.95rem; 
  padding: 8px 0; 
  transition: color .25s ease; 
}

.nav-item:hover { 
  color: #2563eb; 
}

.nav-item::after { 
  content: ""; 
  display: block; 
  width: 0; 
  height: 2px; 
  background: linear-gradient(90deg, #2563eb, #1d4ed8); 
  transition: width .3s ease; 
  border-radius: 1px; 
}

.nav-item:hover::after { 
  width: 100%; 
}

.btn {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.btn-outline {
  background: transparent;
  color: #475569;
  border: 1.5px solid #e2e8f0;
}

.btn-outline:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #334155;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: 1.5px solid transparent;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 2px;
  background: #475569;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('assets/SN43.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
  background: none;              
  -webkit-background-clip: initial;
  background-clip: initial;       
  -webkit-text-fill-color: currentColor; 
  color: #ffffff;                  
  text-shadow: none; 
}

.gradient-text {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
  text-align: center;
}

.hero-description.quote {
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: #f59e0b;
  margin: 1.5rem 0 2rem;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.or-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  text-align: center;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.or-divider span {
  padding: 0 1rem;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.card-1 {
  top: 50px;
  left: 50px;
  animation-delay: 0s;
}

.card-2 {
  top: 150px;
  right: 80px;
  animation-delay: 2s;
}

.card-3 {
  bottom: 100px;
  left: 100px;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* About Us Section */
.about {
  padding: 5rem 0;
  margin-top: 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(51, 65, 85, 0.03) 0%, transparent 70%),
              radial-gradient(circle at 70% 60%, rgba(51, 65, 85, 0.03) 0%, transparent 70%);
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.about-text {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.about .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.about .section-header::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #334155, #64748b);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.about-description {
  margin-bottom: 2.5rem;
  width: 100%;
  text-align: center;
}

.about-description p {
  font-size: 1.1rem;
  color: #64748b;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  flex: 1;
  min-width: 200px;
}

.about-stat i {
  font-size: 2rem;
  color: #2563eb;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.about-stat .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.about-stat .stat-label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-image {
  background: linear-gradient(135deg, #334155 0%, #475569 100%);
  border-radius: 16px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(51, 65, 85, 0.15);
}

.visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.image-placeholder {
  text-align: center;
  z-index: 2;
}

.image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.image-placeholder span {
  font-size: 1.2rem;
  font-weight: 600;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.highlight-item i {
  color: #10b981;
  font-size: 1.2rem;
}

.highlight-item span {
  font-weight: 500;
  color: #1e293b;
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 0;
  background: linear-gradient(180deg, #e6f9f0 0%, #f5f3ff 40%, #f0e7ff 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(216, 180, 254, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 10% 10%, rgba(139, 92, 246, 0.03) 0%, transparent 30%);
  z-index: 0;
  animation: backgroundShift 20s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.how-it-works .section-header h2 {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.how-it-works .section-header::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.workflow-container-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add sequential animation to workflow steps */
.workflow-step-card:nth-child(1) {
  animation: fadeInStep 0.5s ease-out 0.1s both;
}
.workflow-step-card:nth-child(2) {
  animation: fadeInStep 0.5s ease-out 0.2s both;
}
.workflow-step-card:nth-child(3) {
  animation: fadeInStep 0.5s ease-out 0.3s both;
}
.workflow-step-card:nth-child(4) {
  animation: fadeInStep 0.5s ease-out 0.4s both;
}
.workflow-step-card:nth-child(5) {
  animation: fadeInStep 0.5s ease-out 0.5s both;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.workflow-step-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 1.5rem 1.5rem;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #ede9fe;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;
  transform-origin: center bottom;
}

.workflow-step-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.15);
  border-color: #d8b4fe;
}

.workflow-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  border-radius: 8px 8px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.workflow-step-card:hover::before {
  opacity: 1;
}

.workflow-step-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  transition: all 0.3s ease;
}

.workflow-step-card:hover::after {
  opacity: 1;
  left: 5%;
  right: 5%;
}

.step-number {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid white;
  box-shadow: 0 6px 12px rgba(124, 58, 237, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  }
}

.workflow-step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem 0 1.2rem;
  color: #1e293b;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.workflow-step-card:hover h3 {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.workflow-step-card h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  transition: width 0.3s ease;
  opacity: 0;
}

.workflow-step-card:hover h3::after {
  width: 100%;
  opacity: 1;
}

.workflow-step-card p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* Responsive styles for the workflow grid */
@media (max-width: 1024px) {
  .workflow-container-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .workflow-container-grid {
    grid-template-columns: 1fr;
  }
}

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto;
}

.step-content {
  position: relative;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.step-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(249, 115, 22, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(3, 105, 161, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(185, 28, 28, 0.07) 0%, transparent 40%);
  z-index: 0;
}

.features .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Research Section */
.research {
  padding: 5rem 0;
  background: white;
}

.research-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.research-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.research-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.research-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.research-highlights {
  margin-bottom: 2rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #1e293b;
}

.highlight i {
  color: #10b981;
  font-size: 1.2rem;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-item {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #64748b;
  font-weight: 500;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background: #f8fafc;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-header i {
  font-size: 2rem;
  color: #2563eb;
}

.benefit-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #64748b;
}

.benefit-list i {
  color: #10b981;
  font-size: 1rem;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f9fafb 0%, #f1f5f9 50%, #e2e8f0 100%); /* Light gray gradient */
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231e40af' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E"),
    radial-gradient(circle at 20% 30%, rgba(30, 64, 175, 0.03) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(30, 64, 175, 0.03) 0%, transparent 60%);
  z-index: 0;
  opacity: 0.8;
}

.contact .container {
  position: relative;
  z-index: 1;
}

/* .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
} */

.contact .container { display: grid; place-content: center; }

.contact-content { display: grid; grid-template-columns: 1fr; place-items: center; max-width: 780px; margin-inline: auto; text-align: center; gap: 2rem; }

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.contact-info h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #1e40af, #3b82f6);
  border-radius: 3px;
}

.contact-info p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #4b5563;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgba(241, 245, 249, 0.8);
}

.contact-item:hover {
  transform: translateX(5px);
  background: white;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1);
}

.contact-item i {
  color: #1e40af;
  font-size: 1.2rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 50%;
  padding: 1rem;
  transition: all 0.3s ease;
}

.contact-item:hover i {
  background: rgba(30, 64, 175, 0.15);
  transform: scale(1.1);
}

.contact-email {
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-email:hover {
  color: #1e3a8a;
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1e40af, #3b82f6);
  opacity: 0.8;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
  background: white;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: #bfdbfe;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.contact-form .btn-primary:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact section animations */
.contact-info {
  animation: fadeIn 0.8s ease-out;
}

.contact-item:nth-child(1) {
  animation: floatIn 0.5s ease-out 0.1s both;
}

.contact-item:nth-child(2) {
  animation: floatIn 0.5s ease-out 0.2s both;
}

.contact-item:nth-child(3) {
  animation: floatIn 0.5s ease-out 0.3s both;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 3rem 0 2.5rem; /* Reduced padding by half */
}

.footer-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem; /* Larger font size */
  font-weight: 700;
  margin-bottom: 1rem; /* Reduced margin by half */
}

.footer-logo-image {
  width: 60px; /* Larger logo */
  height: 60px; /* Larger logo */
  margin-right: 1.2rem; /* More spacing */
  object-fit: contain;
  /* Removed filter to show original logo colors */
}

.footer-tagline {
  color: #6ee7dd; /* Changed to light teal/aqua color */
  margin-bottom: 2rem; /* Reduced margin by half */
  font-size: 1.15rem; /* Larger font size for better readability */
  max-width: 600px; /* Limit width for better readability */
  line-height: 1.7; /* Better line spacing */
}

.footer-contact-title {
  font-size: 1.5rem; /* Larger heading */
  font-weight: 600;
  margin-bottom: 1rem; /* Reduced margin by half */
  color: #f1f5f9;
  letter-spacing: 0.5px; /* Better readability */
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 1.5rem; /* Reduced gap by half */
  margin-bottom: 2.5rem; /* Reduced margin by half */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  padding: 0.75rem 0; /* Reduced padding by half */
  width: 100%;
  max-width: 1000px;
}

.footer-contact a, 
.footer-contact span {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.4rem 0.6rem; /* Reduced padding by half */
  font-size: 1.2rem; /* Larger for better readability */
  border-radius: 8px; /* Rounded corners */
  background-color: rgba(255, 255, 255, 0.05); /* Subtle background */
  display: flex;
  align-items: center;
  gap: 5px; /* Reduced gap by half */
}

.footer-contact i {
  color: #3b82f6; /* Blue icon color */
  font-size: 1.3rem; /* Larger icons */
}

.footer-contact a:hover {
  color: #2563eb;
  background-color: rgba(255, 255, 255, 0.1); /* Brighter background on hover */
  transform: translateY(-3px); /* Slight lift effect */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Shadow on hover */
}

.footer-copyright {
  border-top: 1px solid #334155;
  padding-top: 1.25rem; /* Reduced padding by half */
  padding-bottom: 0.25rem; /* Reduced padding by half */
  width: 100%;
  max-width: 900px; /* Constrain width */
  text-align: center;
  color: #94a3b8; /* Reverted to original light bluish-gray */
  font-size: 0.9rem; /* Reduced font size */
  line-height: 1.8; /* Better line height */
}

/* Social links are hidden for now */
.social-links {
  display: none;
}

@media (min-width: 769px) {
.nav-menu .nav-cta { display: none; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-contact {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 15px;
  }
  
  .logo-container {
    gap: 8px;
  }
  
  .logo-placeholder {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .brand-name {
    font-size: 1.2rem;
  }

  .brand-name2 {
    font-size: 1.2rem;
  }
  
  .brand-tagline {
    font-size: 0.7rem;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 2rem 0;
    gap: 0;
  }

  .nav-menu li {
    margin: 0.5rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu .nav-cta {
    display: block;
    margin-top: 12px;
    padding: 0 16px;
}

.nav-menu .nav-cta .btn { 
  width: 100%; 
}
  
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Only apply these grid changes for mobile devices */
  @media (max-width: 767px) {
    .hero-container {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
    }
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-visual {
    height: 300px;
  }

  .about-content,
  .research-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    flex-direction: column;
  }

  .workflow-step {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .workflow-step:hover {
    transform: none;
  }
    gap: 2rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  /* Footer responsive styles are now handled directly in the footer section */

  /* Only apply these grid changes for mobile devices */
  @media (max-width: 767px) {
    .hero-buttons {
      justify-content: center;
    }
    
    .hero-content {
      text-align: center;
    }
  }

  .features-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .feature-card,
  .benefit-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Form submission states */
.form-success {
  background: #10b981;
  color: white;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
}

.form-error {
  background: #ef4444;
  color: white;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
}

/* Accessibility improvements */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  /* Add dark mode styles if needed */
}

/* Key Value Propositions Section */
.value-propositions {
  background: linear-gradient(180deg, #f1f5f9 0%, #e0f2fe 50%, #cffafe 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.value-propositions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(2, 132, 199, 0.05) 0%, transparent 70%),
              radial-gradient(circle at 80% 70%, rgba(2, 132, 199, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.value-propositions .container {
  position: relative;
  z-index: 1;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-prop-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  border-bottom: 3px solid transparent;
}

.value-prop-card:nth-child(1) {
  border-bottom-color: #3b82f6;
}

.value-prop-card:nth-child(2) {
  border-bottom-color: #0284c7;
}

.value-prop-card:nth-child(3) {
  border-bottom-color: #0369a1;
}

.value-prop-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-prop-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value-prop-card:nth-child(1) .value-prop-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.value-prop-card:nth-child(2) .value-prop-icon {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
}

.value-prop-card:nth-child(3) .value-prop-icon {
  background: linear-gradient(135deg, #0369a1, #075985);
  color: white;
}

.value-prop-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.value-prop-card p {
  color: #64748b;
  font-size: 1.1rem;
}

.value-prop-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.value-prop-conclusion {
  font-size: 1.3rem;
  font-weight: 500;
  color: #334155;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Responsive styles for value propositions */
@media (max-width: 900px) {
  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .value-props-grid {
    grid-template-columns: 1fr;
  }
  
  .value-prop-conclusion {
    font-size: 1.1rem;
  }
}

/* Benefits for Educators and Students Section */
.educator-benefits {
  padding: 5rem 0;
  background: linear-gradient(180deg, #e6f0f9 0%, #f0f9f4 50%, #e6f9f0 100%);
  position: relative;
  overflow: hidden;
}

.educator-benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 20%, rgba(13, 148, 136, 0.05) 0%, transparent 70%),
              radial-gradient(circle at 30% 80%, rgba(22, 101, 52, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.educator-benefits .container {
  position: relative;
  z-index: 1;
}

.educator-benefits .section-header h2 {
  background: linear-gradient(90deg, #0d9488, #166534);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.educator-benefits .section-header::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #0d9488, #166534);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.benefits-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.benefit-column {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.benefit-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-column-header {
  color: white;
  padding: 2rem;
  text-align: center;
}

.benefit-column:nth-child(1) .benefit-column-header {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.benefit-column:nth-child(2) .benefit-column-header {
  background: linear-gradient(135deg, #166534 0%, #14532d 100%);
  box-shadow: 0 4px 12px rgba(22, 101, 52, 0.3);
}

.benefit-column-header i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.benefit-column-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.benefit-items {
  padding: 2rem;
}

.benefit-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 2rem;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
}

.benefit-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.benefit-column:nth-child(1) .benefit-item h4 {
  color: #0d9488;
}

.benefit-column:nth-child(2) .benefit-item h4 {
  color: #166534;
}

.benefit-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.benefit-item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.benefit-column:nth-child(1) .benefit-item h4::before {
  background-color: #0d9488;
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.2);
}

.benefit-column:nth-child(2) .benefit-item h4::before {
  background-color: #166534;
  box-shadow: 0 0 0 2px rgba(22, 101, 52, 0.2);
}

.benefit-item p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
  padding-left: 1.5rem;
}

/* Thank You Page Styles */
.thank-you {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  font-size: 4rem;
  color: #3ebab1; /* Matches the darker teal color */
  margin-bottom: 1.5rem;
}

.thank-you-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.thank-you-content p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.thank-you-actions {
  margin-top: 2rem;
}

/* Responsive styles */
@media (max-width: 900px) {
  .benefits-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .benefit-column-header {
    padding: 1.5rem;
  }
  
  .benefit-column-header h3 {
    font-size: 1.5rem;
  }
  
  .benefit-items {
    padding: 1.5rem;
  }
  
  .thank-you-content {
    padding: 2rem;
    margin: 0 1rem;
  }
}
