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

body, html {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

a {
  color: #F79421;
}

a:hover, a:active {
  color: #1E1E1E;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #F5F5F5;
}

/* Typography */
.section-title {
  font-size: 16px;
  font-weight: 500;
  color: #F79421;
  margin-bottom: 8px;
  line-height: 19.36px;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 20px;
}

/* Buttons */
.button {
  background-color: #FF8900;
  border: 1px solid #FFA844;
  color: #0E0E0E;
  font-weight: 600;
  font-size: 12px;
  padding: 8px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  line-height: 14.52px;
}

.button:hover, .button:focus, .button:active {
  background-color: #e67800;
  color: #0E0E0E;
  text-decoration: none;
}

/* Responsive adjustments */
@media screen and (max-width: 640px) {
  .section-subtitle {
    font-size: 20px;
    line-height: 28px;
  }
}
