body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #1b1c1d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.section-title {
  font-size: 48px;
  font-weight: 500;   
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -1.44px;
 
}

.section-subtitle {
  font-size: 18px;
  color: #6f7275;
  text-align: center;
  line-height: 1.5;
}

.overline {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: center;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #1b1c1d;
  color: #ffffff;
}

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

.btn-secondary {
  background-color: #edf0f2;
  color: #1b1c1d;
}

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

.btn-white {
  background-color: #ffffff;
  color: #1b1c1d;
}

.btn-white:hover {
  background-color: #f7f9fa;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .section-title {
    font-size: 32px;
  }
}