body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 20px; 
}

.nav-text {
    color: rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    font-weight: 400;
}

.cta-button {
    padding: 10px 20px;
    background-color: #5A89FD;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
}

.cta-button:hover {
    background-color: #4a79ed;
}

.hero-title {
    color: rgba(90, 137, 253, 0.65);
    font-size: 48px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 0px;
    font-weight: bold;
}

.sub-text {
    color: rgba(0, 0, 0, 0.7);
    font-size: 24px;
    text-align: center;
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    line-height: 1.3;
    font-weight: 300;
}

.main-cta {
    padding: 20px 50px;
    font-size: 24px;
    display: inline-block;
    margin-top: 5rem;
    border-radius: 50px; 
}

.text-center {
    text-align: center;
}

.star, .thingie {
    position: absolute;
}

.star {
    bottom: 23px;
    left: 12px;
}

.thingie {
    bottom: 0px;
    right: 0px;
}

.cancel-anytime {
    text-align: center;
    display: block;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.2);
    margin-top: 5px;
    font-weight: 400;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .nav-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 36px;
    }

    .sub-text {
        font-size: 18px;
    }

    .main-cta {
        padding: 15px 35px;
        font-size: 20px;
    }

    .star {
        width: 50%;
        position: static;
    }
    .thingie {
        display: none;
    }

    .nav-text {
        display: none;
    }

    body {
        font-size: 90%;
    }

    .cta-button {
        padding: 8px 15px;
        font-size: 90%;
    }
}
