* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1f2937;
  background-color: #f9fafb;
  line-height: 1.6;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.section-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
.header {
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: 1140px;
  margin: 0 auto;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2563eb;
}

.logo h1 span {
  color: #1f2937;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s;
}

.nav a:hover {
  color: #2563eb;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-secondary {
  background-color: #fff;
  color: #2563eb;
  font-weight: bold;
}

.btn-secondary:hover {
  background-color: #f3f4f6;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.icon {
  width: 1rem;
  height: 1rem;
}

.btn-lg .icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom right, #3b82f6, #1d4ed8);
  color: #fff;
  padding: 5rem 1rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #dbeafe;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-card {
  flex: 1;
  background-color: #fff;
  color: #1f2937;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 28rem;
}

.hero-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.hero-card .btn {
  width: 100%;
  justify-content: center;
  padding: 1.5rem;
  font-size: 1.125rem;
}

/* Stats Section */
.stats {
  background-color: #fff;
  padding: 3rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.stat-item p:first-child {
  font-size: 2.25rem;
  font-weight: bold;
  color: #2563eb;
}

.stat-item p:last-child {
  color: #6b7280;
}

/* Section Styles */
section {
  padding: 4rem 1rem;
}

.section-bg-gray {
  background-color: #f9fafb;
}

.section-bg-white {
  background-color: #fff;
}

.section-bg-blue {
  background-color: #eff6ff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

/* About Section */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1140px;
  margin: 0 auto;
}

.about-col {
  flex: 1;
}

.about-col h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.about-col p {
  color: #374151;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  background-color: #dbeafe;
  border-radius: 50%;
  padding: 0.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
}

.feature-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-item p {
  color: #6b7280;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.benefit-card {
  background-color: #f9fafb;
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s;
}

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

.benefit-icon {
  background-color: #dbeafe;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon svg {
  width: 2rem;
  height: 2rem;
  color: #2563eb;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #6b7280;
}

/* Replaced complex timeline styles with a clean, responsive grid layout */
/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.process-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e5e7eb;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.process-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.process-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2563eb;
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
}

.process-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}

.process-card-body {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.process-card-body p {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.process-card-footer {
  background-color: #f9fafb;
  margin: 0 -2rem -2rem -2rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e5e7eb;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.process-card-footer h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0.75rem;
}

.process-card-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-card-footer li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.process-card-footer li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.process-card-footer li:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for grid */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-card {
    padding: 1.5rem;
  }

  .process-card-footer {
    margin: 0 -1.5rem -1.5rem -1.5rem;
    padding: 1.25rem 1.5rem;
  }
}

/* FAQ Section */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.accordion-item {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-trigger:hover {
  background-color: #f3f4f6;
}

.accordion-icon {
  transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content-inner {
  padding: 0 1rem 1rem;
  color: #6b7280;
}

/* Contact Section */
.contact-card {
  max-width: 42rem;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-content {
  padding: 3rem;
  text-align: center;
}

.contact-icon {
  width: 5rem;
  height: 5rem;
  background-color: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #2563eb;
}

.contact-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-content p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.contact-content .btn {
  width: 100%;
  justify-content: center;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: #fff;
  padding: 3rem 1rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-col p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  color: #9ca3af;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul.contacts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-col ul.contacts svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-col a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #6b7280;
}

/* Mobile Responsive */
@media (min-width: 768px) {
  .nav {
    display: block;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text h2 {
    font-size: 3rem;
  }

  .about-content {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .nav {
    display: none;
  }

  .header-btn .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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