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

body {
  font-family: 'Inter', sans-serif;
  background-color: white;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

/* Typography */
.main-heading {
  font-family: 'EB Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #273b35;
}

.subtitle {
  text-align: center;
  color: #666;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

/* Cards Container */
.cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

/* Connecting line */
.connecting-line {
  display: none;
}

/* Card */
.card {
  position: relative;
  background-color: #fcfbf8;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.3s ease;
  z-index: 1;
}

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

/* Number Circle */
.number-circle {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  background-color: #273b35;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
}

.number-circle span {
  font-family: 'EB Garamond', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

/* Card Content */
.card-content {
  margin-top: 2rem;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.card-header h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #273b35;
}

.icon {
  height: 1.5rem;
  width: 1.5rem;
  color: #273b35;
}

/* Divider */
.divider {
  width: 4rem;
  height: 0.25rem;
  background-color: rgba(39, 59, 53, 0.2);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

/* Card Text */
.card-text {
  color: #666;
  margin-bottom: 1rem;
}

/* Feature List */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.check-icon {
  height: 1.25rem;
  width: 1.25rem;
  color: #273b35;
  margin-right: 0.5rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.feature-list li span {
  font-size: 0.875rem;
  color: #666;
}

/* Responsive */
@media (min-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .connecting-line {
    display: block;
    position: absolute;
    top: 4rem;
    left: 25%;
    right: 25%;
    height: 0.125rem;
    background-color: rgba(39, 59, 53, 0.2);
    z-index: 0;
  }
}
