body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #111;
}

body.home-page {
    background-color: #f5f5f7;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

h1,
h2,
h3 {
    font-weight: 600;
    line-height: 1.3;
    color: #000;
}

h1 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
    text-transform: none;
}

h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: none;
    text-transform: none;
}

h2::before {
    content: "";
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-style: normal;
}

p,
li {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

ul,
ol {
    padding-left: 25px;
}

a {
    color: #007aff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong,
b {
    font-weight: 600;
    color: #000;
}

.last-updated {
    color: #555;
    font-size: 1rem;
    text-align: left;
    margin-bottom: 3rem;
    display: block;
}

.back-to-top {
    display: inline-block;
    margin-top: 3rem;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
}

.back-to-top:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}


/* App Card Styles */

.app-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 22px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    margin-right: 2.5rem;
    flex-shrink: 0;
}

.app-info {
    display: flex;
    flex-direction: column;
}

.app-info h1 {
    font-size: 2.2rem;
    margin-bottom: 0.25rem;
}

.app-info .subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    margin-top: 0;
    margin-bottom: 1rem;
}

.app-info .description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.app-store-button {
    display: inline-block;
    background-color: #007aff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
    text-align: center;
    align-self: flex-start;
}

.app-store-button:hover {
    background-color: #005ecb;
    text-decoration: none;
}

.app-store-button:active {
    transform: scale(0.98);
}


/* Legal Links Section */

.legal-links {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.legal-links h2 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: left;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    display: block;
    margin-bottom: 0.75rem;
    text-align: left;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
}


/* Footer Styles */

.site-footer {
    text-align: center;
    padding: 2rem;
    color: #888;
    font-size: 0.9rem;
}

.site-footer p {
    margin: 0;
    padding: 0;
    text-align: center;
}

.site-footer a {
    color: #888;
    text-decoration: underline;
}

.site-footer a:hover {
    color: #111;
}