:root {
    --primary: #111827;
    --secondary: #1f2937;
    --gray: #6b7280;
    --lightgray: #e5e7eb;
    --light: #f9fafb;
    --lightgrey: lightgray;
    --font: 'Helvetica Neue', sans-serif;
}

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

body {
    font-family: var(--font);
    color: var(--primary);
    background-color: var(--lightgrey);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: 100%;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px 0px;
    background-color: white;
    height: auto;
    overflow: hidden;
}

section.calendly-section {
    width: 100%;
}

h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 30px;
}

h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--gray);
}

li {
    list-style-type: none;
    border-left: 4px solid var(--lightgrey);                                                                                                                                                              );                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  );
    padding-left: 1rem;
    margin-bottom: 1rem;
}

button.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

.cta-wrapper {
    position: relative;
}

.sticky-btn {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 300px;
}

.primary {
    background-color: var(--primary);
    color: white;
}

.secondary {
    background-color: #e5e7eb;
    color: var(--primary);
}

.hero, .info, .consult {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text {
    padding: 30px
}

.hero .text, .info .text, .consult .text {
    flex: 1;
}

.hero .image, .info .image, .consult .image {
    flex: 1;
}

.benefits .grid {
    display: grid;
    gap: 30px;
}

.benefits .item {
    display: flex;
}

.benefits .item .icon-container {
    margin-right:  15px;
}

.benefits .item .fas {
    background-color: var(--lightgrey);
    padding: 10px;
    border-radius: 4px;
}
.benefits .item h3 {
    margin-bottom: 10px;
}

.faq {
    justify-content: unset;
}
.faq details {
    margin-bottom: 15px;
}

.faq summary {
    font-weight: bold;
    cursor: pointer;
}

footer {
    text-align: center;
    background: var(--secondary);
    color: white;
    padding: 20px;
    width: 100%;
}

.flex-row {
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none;
}

.calendly-section {
    padding: 60px 20px;
    background-color: #f9fafb;
    text-align: center;
}

.calendly-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}



/* === BREAKPOINTS === */

/* Tablet */
@media (min-width: 600px) {
    section {
        height: 550px;
        width: 75%;
    }
    section.calendly-section {
        height: auto;
    }
    h1 { font-size: 44px}
    h3 { font-size: 18px}
    p { font-size: 16px }
    .sticky-btn { top: 50px }
    .flex-row { flex-direction: row }
    .benefits .grid { grid-template-columns: repeat(2, 1fr) }

    .hero,
    .info,
    .consult {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .info.reverse {
        flex-direction: row-reverse;
    }
}