* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Muli", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
    background-color: #121212;
    padding: 60px 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-family: "Saira Extra Condensed", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.app-name {
    font-family: "Saira Extra Condensed", sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 40px;
}

.effective-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

h2 {
    font-family: "Saira Extra Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 16px;
}

p {
    margin-bottom: 16px;
    color: #b0b0b0;
}

ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
    color: #b0b0b0;
}

a {
    color: #db5621;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.highlight-box {
    background-color: #1e1e1e;
    border-left: 4px solid #db5621;
    padding: 20px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: #e0e0e0;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.app-header-text h1 {
    margin-bottom: 4px;
}

.app-header-text .app-name {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    body {
        padding: 40px 16px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .app-icon {
        width: 64px;
        height: 64px;
        border-radius: 14px;
    }

    .app-header {
        gap: 16px;
    }
}
