/* Eric Meyer's Reset CSS v2.0 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body,
html {
  width: 100%;
  height: 100%;
  background-color: #EDF7FA;
}

/* Iframes styles */
.hero {
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  color: #333333;
  padding: 1rem;
}

.hero__heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 18px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background-color: white;
  border: 1px solid #c9e2ea;
  border-radius: 999px;
  font-size: 14px;
}

.hero__title {
  font-size: 50px;
  font-weight: bold;
  margin: 0;
}

.hero__subtitle {
  font-size: 28px;
  font-weight: 500;
}

.hero__features {
  list-style: none;
  padding: 0;
  margin-top: 32px;
}

.hero__feature {
  margin-bottom: 8px;
  font-size: 20px;
  color: #313131;
  display: flex;
  align-self: center;
  gap: 10px;
}

.hero__note {
  font-size: 24px;
  margin-top: 32px;
  color: #333;
  font-weight: 600;
}

.hero__actions {
  margin-top: 48px;
  display: flex;
  gap: 15px;
}

.hero__button {
  padding: 14px 24px;
  font-size: 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.hero__button--primary {
  background-color: #5f6caf;
  color: white;
}

.hero__button--secondary {
  background-color: #ebebeb;
  color: #111;
}

@media (max-width: 650px) {
  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__feature {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }
}