/* App Page Specific Styles */
#app-hero {
    padding: 180px 0 120px;
    background-color: #FBFBFD;
}

.app-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-icon {
    width: 180px;
    height: 180px;
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.app-hero-text {
    flex: 1;
}

.app-hero-text h1 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.003em;
    margin-bottom: 0.3em;
}

.tagline {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 400;
    letter-spacing: .009em;
    color: var(--text-light);
}

.lead-text {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: .011em;
    color: var(--text-light);
    margin-bottom: 1.2em;
}

/* Feature List Styling */
.feature-list {
    margin: 2.5rem 0;
}

.feature-list li {
    margin-bottom: 2rem;
    font-size: 17px;
    line-height: 1.47059;
}

.feature-list li strong {
    font-size: 21px;
    line-height: 1.19048;
    font-weight: 600;
    letter-spacing: .011em;
    display: block;
    margin-bottom: 0.5em;
}

.feature-list li p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -0.022em;
}

/* Nested List Styling */
.feature-list ul {
    list-style: none;
    margin: 0.75rem 0 0.75rem 1.5rem;
}

.feature-list ul li {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.feature-list ul li::before {
    content: "–";
    color: var(--text-color);
    position: absolute;
    left: 0;
}

/* Why it Works List */
.why-it-works-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.why-it-works-list li {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.why-it-works-list li::before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.disclaimer {
    background-color: #F5F5F7;
    padding: 24px;
    border-radius: 18px;
    margin: 40px 0;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.42859;
    font-weight: 400;
    letter-spacing: -.016em;
    color: #6E6E73;
}

#app-privacy {
    background-color: #F5F5F7;
    text-align: center;
    padding: 120px 0;
}

#app-privacy h2 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.009em;
    margin-bottom: 0.5em;
}

#app-privacy p {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: .011em;
    color: #6E6E73;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .app-hero-text h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.25rem;
    }
}

/* Also update other heading sizes for consistency */
.app-description-content h2 {
    font-size: 24px;
    margin-bottom: 1em;
}

.button-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.app-store-badge {
    height: 40px;
    width: auto;
}

.app-hero-text .app-store-badge {
    margin-top: 1.5rem;
    height: 40px;
    width: auto;
}
 