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

body {
  font-family: "DM Sans", sans-serif;
  background-color: #f7f5f3;
  color: #333;
  line-height: 1.6;
  text-align: end;
}

li {
margin-left: 1.5rem;
}

a {
    text-decoration: none;
    color: #C53030;
}

.header {
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon svg {
  width: 40px;
  height: 40px;
}

.logo-text h1 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.logo-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 400;
}

.main-content {
  display: flex;
  min-height: calc(100vh - 100px);
  padding: 2rem;
}

.hero {
  text-align: start;
  max-width: 600px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h3 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero h4 {
  font-size: 2rem;
  font-weight: 400;
  color: #C53030;
  margin-bottom: 1rem;
  line-height: 1;
}

.hero p {
  font-size: 1.125rem;
  color: #718096;
  margin-bottom: 3rem;
  max-width: 500px;
}

.start-button {
  background-color: #C53030;
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(197, 48, 48, 0.3);
}

.start-button:hover {
  background-color: #B91C1C;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(197, 48, 48, 0.4);
}

.start-button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero h3 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .start-button {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo {
    gap: 0.75rem;
  }

  .logo-icon svg {
    width: 32px;
    height: 32px;
  }

  .logo-text h1 {
    font-size: 1.25rem;
  }

  .logo-text p {
    font-size: 0.75rem;
  }

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

  .hero h3 {
    font-size: 1.75rem;
  }
}
