* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

.hero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1b1b2f 0%, #1e2d4d 50%, #162447 100%);
  color: #fff;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin: 0 auto 2rem auto;
  font-weight: 400;
  max-width: 600px;
}

.custom-shape-divider-bottom-hero {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-hero svg {
  position: relative;
  display: block;
  width: calc(111% + 1.3px);
  height: 100px;
}

.custom-shape-divider-bottom-hero .shape-fill {
  fill: #f9f9f9;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 1rem;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section p {
  color: #555;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 1rem;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.feature-item h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.join-section p {
  max-width: 700px;
  margin: 1rem auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f05454 0%, #ff7676 100%);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.footer {
  background-color: #1e1e2f;
  color: #ffffff;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer-container p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }
}