.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: var(--background);
    color: var(--foreground);
}

.landing-section {
    width: 100%;
    max-width: 900px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--current-line);
}

.trust-focused {
    background-color: #3a3c4e;
}

.short-punchy {
    background-color: #4e3a4e;
}

.general {
    background-color: #3a3c4e;
}

.landing-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--purple);
}

.landing-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--cyan);
}

.content-block {
    text-align: left;
    margin-top: 2rem;
}

.content-block h3 {
    font-size: 1.5rem;
    color: var(--pink);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-block ul {
    list-style-position: inside;
    padding-left: 0;
}

.tagline {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1.5rem;
    color: var(--green);
}

.get-started-button {
    margin-top: 2rem;
}

