@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
	scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
  position: relative;
  font-family: "Outfit", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: #0a1128;
  line-height: 1.6;
}

/* Common section title styles */
.section-title {
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #0a1128;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  color: #5a6c7d;
  margin-bottom: 40px;
}

/* Responsive typography */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .button-group {
    height: 40px !important;
    flex-direction: column;
    align-items: center;

    .btn-primary, .btn-secondary, .btn-tertiary {
      line-height: 40px !important;
      font-size: 16px !important;
      padding: 0 27px !important;
    }
  }
}

/* Utility classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
  height: 60px;

  .btn-primary, .btn-secondary, .btn-tertiary {
    cursor: pointer;
    min-width: 260px;
    line-height: 60px;
    text-align: center;
    border-radius: 40px;
    padding: 0 36px;

    font-weight: 700;
    font-style: Bold;
    font-size: 24px;

    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
    &:hover {
      transform: scale(1.1);
      text-decoration: none;
    }
    &:visited {
      color: #fff;
    }
    &:active {
      color: #fff;
    }
  }
  .btn-primary {
    background:#6C4EF1;
  }
  .btn-secondary {
    background: #00D177;
  }
  .btn-tertiary {
    background:#2B49DB;
  }
}