/* Reset */
*, *::after, *::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html body {
    line-height: 1.5;
    scroll-behavior: smooth;
}

body {
    --webkit-font-smoothing: antialiased;
}

img, video, picture, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}

h1, h2, h3, h4, h5 {
    text-wrap: balance;
}

/* Default */

body {
    font-family: "Karla", sans-serif;
    background-color: hsl(204, 43%, 93%);
}

.section {
    display: grid;
    place-content: center;
    height: 100vh;
    height: 100dvh;
}

.container {
    max-width: 1440px;
    margin: 0  auto;
}

.section__container {
    padding: 0 16px;
}

/* Styles */

.section__heading {
    font-weight: 700;
    font-size: 1.5rem;
    color: hsl(179, 62%, 43%);
    margin-bottom: 20px;
}

.section__subheading {
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.22px;
    color: hsl(71, 73%, 54%);
    margin-bottom: 12px;
}

.section__text {
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: -0.2px;
    line-height: 1.2;
    color: hsl(218, 22%, 67%);
}

.section__card-left-title {
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.22px;
    color: #ffffff;
    margin-bottom: 20px;
}

.section__card-left-price {
    font-weight: 700;
    font-size: 2rem;
    color: #ffffff;
}

.section__card-left-price--small {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.2;
    color: hsl(204, 43%, 93%);
}

.section__card-left-text {
    font-weight: 400;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 28px;
}

.section__card-right-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 16px;
}

.section__card-item {
    list-style: none;
}

.section__card-link {
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    color: hsl(204, 43%, 93%);
}

/* Utilities */

.button {
    all: unset;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
}

.button__cta {
    background-color: hsl(71, 73%, 54%);
    border-radius: 8px;
    padding: 12px 0;
    width: 100%;
}

.section__card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    max-width: 40rem;
}

.section__header {
    background-color: #ffffff;
    padding: 42px 82px 40px 40px;
}

.section__cards {
    display: flex;
}

.section__card-left {
    flex: 1;
    background-color: hsl(179, 62%, 43%);
    padding: 42px 40px 40px;
}

.section__card-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section__card-right {
    flex: 1;
    background-color: hsla(179, 62%, 43%, 0.746);
    padding: 42px 40px 40px;
}

@media (max-width: 36rem) {
    .section__cards {
        flex-direction: column;
    }
}