* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #4a5565;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: #030213;
  margin-top: 0;
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  color: #ffffff;
  transition: opacity 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-pink {
  background-color: #e91e8c;
  padding: 8px 24px;
  font-size: 14px;
}

.btn-cyan {
  background-color: #00b3b3;
  padding: 12px 32px;
  gap: 8px;
  font-size: 16px;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}