.middle {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #171B26;
    flex-direction: column;
    width: 100%;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80vw;
    padding: 10vh 0;
    color: white;
}

.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 50%;
}

.hero-content h1 {
    font-size: 2.8vw;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3vh;
}

.hero-content h1 span {
    color: #4BC1BE;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 4vh;
}

.features-list li {
    font-size: 1.1vw;
    margin-bottom: 1.5vh;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: '✓';
    color: #4BC1BE;
    font-size: 1.5vw;
    font-weight: bold;
    margin-right: 15px;
}

.cta-button {
    background-color: #4BC1BE;
    color: #171B26;
    font-weight: bold;
    font-size: 1vw;
    text-decoration: none;
    padding: 1.5vh 2vw;
    border-radius: 30px;
    text-align: center;
    max-width: 250px;
}

.cta-button:hover {
    background-color: #5cdbda;
}

.cta-subtext {
    font-size: .9vw;
    color: #9DAABF;
    margin-top: 1.5vh;
    max-width: 250px;
    text-align: center;
}

.hero-image {
    width: 45%;
}

.hero-image img {
    margin-left: -20vw;
    height: 80vh;
    width: auto;
}

.tracking-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8vh 10vw;
    color: white;
    width: 100%;
}

.tracking-options h2 {
    font-size: 2.2vw;
    margin-bottom: 2vh;
}

.tracking-options>p {
    font-size: 1.1vw;
    color: #9DAABF;
    max-width: 600px;
    margin-bottom: 6vh;
}

.options-container {
    display: flex;
    justify-content: center;
    gap: 3vw;
    width: 100%;
    max-width: 1200px;
}

.option-card {
    border-radius: 10px;
    padding: 4vh 2vw;
    width: 45%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
}

.option-icon-wrapper {
    background-color: #47C2BE;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3vh;
}

.option-icon {
    width: 40px;
    height: 40px;
    fill: #171B26;
}

.option-card h3 {
    font-size: 1.5vw;
    margin-bottom: 2vh;
}

.option-card p {
    font-size: 1vw;
    color: #9DAABF;
    line-height: 1.6;
}

.final-cta {
    text-align: center;
    padding: 8vh 0 12vh 0;
}

.final-cta h3 {
    color: white;
    font-size: 1.8vw;
    margin-bottom: 2vh;
}

.cta-link {
    color: #4BC1BE;
    font-size: 1.2vw;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #4BC1BE;
    padding-bottom: 5px;
}

.cta-link:hover {
    color: #5cdbda;
    border-color: #5cdbda;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        width: 90vw;
        padding: 5vh 0;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
        align-items: center;
    }

    .hero-image {
        width: 90%;
        max-width: 400px;
        order: 1;
        margin-bottom: 4vh;
    }

    .hero-image img {
        margin-left: 0;
        height: auto;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 7vw;
        margin-bottom: 3vh;
    }

    .features-list {
        align-items: flex-start;
        display: inline-flex;
        flex-direction: column;
        text-align: left;
        margin-bottom: 4vh;
        width: auto;
        align-self: center;
    }

    .features-list li {
        font-size: 4vw;
    }

    .features-list li::before {
        font-size: 5vw;
        margin-right: 10px;
    }

    .cta-button {
        font-size: 4vw;
        padding: 1.5vh 4vw;
        max-width: 300px;
        width: 100%;
        align-self: center;
    }

    .cta-subtext {
        font-size: 3.5vw;
        max-width: 300px;
        width: 100%;
    }

    .tracking-options {
        padding: 5vh 5vw;
    }

    .tracking-options h2 {
        font-size: 6vw;
    }

    .tracking-options>p {
        font-size: 4vw;
        margin-bottom: 4vh;
    }

    .options-container {
        flex-direction: column;
        gap: 3vh;
    }

    .option-card {
        width: 100%;
        max-width: none;
        padding: 4vh 5vw;
    }

    .option-card h3 {
        font-size: 5vw;
    }

    .option-card p {
        font-size: 4vw;
    }

    .final-cta {
        padding: 5vh 0 8vh 0;
    }

    .final-cta h3 {
        font-size: 5vw;
    }

    .final-cta .cta-link {
        font-size: 4vw;
    }
}