/* Apple Style Theme */

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f5f5f7;
    color: #1d1d1f;
    min-height: 100vh;
    overflow-x: hidden;
}

header.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid #d2d2d7;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 980px;
    margin: 0 auto;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #d2d2d7;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #1d1d1f;
}

.subtitle {
    font-size: 1.2rem;
    color: #6e6e73;
    margin-top: 0;
    line-height: 1.5;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
}

.app-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 980px;
}

.app-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.app-icon img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 1px solid #d2d2d7;
}

.app-info h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
}

.app-info p {
    margin: 0 0 1rem 0;
    color: #6e6e73;
    font-size: 1rem;
}

.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #007aff;
    color: #ffffff;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

.button:hover {
    background: #005ec4;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #6e6e73;
    font-size: 0.9rem;
    background: #f5f5f7;
    border-top: 1px solid #d2d2d7;
}

/* Policy content */
.policy-content {
    padding: 2rem;
    border-radius: 18px;
    background: #ffffff;
    color: #1d1d1f;
    max-width: 800px;
    margin: 2rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.policy-content h1 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    border-bottom: 1px solid #d2d2d7;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

.policy-content p,
.policy-content ul,
.policy-content ol {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.policy-content ul,
.policy-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .app-list {
        grid-template-columns: 1fr;
    }
}