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

body {
    font-family: 'Crimson Text', 'Crimson Pro', Georgia, 'Times New Roman', serif;
    background: #ffffff;
    color: #867c74;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 40px 20px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    animation: appleReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes appleReveal {
    0% {
        opacity: 0;
        transform: scale(0.995);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.header {
    margin-bottom: 64px;
}

.logo-image {
    width: 56px;
    height: 56px;
    display: block;
    margin: 0 auto 12px;
}

.logo-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #000000;
    margin-bottom: 16px;
}

.subtitle {
    font-family: 'Lora', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #867c74;
    margin-bottom: 6px;
}

.subtitle:last-child {
    margin-bottom: 0;
}

.section {
    margin-bottom: 28px;
}

.section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000000;
    text-align: left;
}

.section-content {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #6b6460;
    text-align: left;
    margin-bottom: 12px;
}

.section-content:last-child {
    margin-bottom: 0;
}

.link {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: opacity 0.2s ease;
}

.link:hover {
    opacity: 0.5;
}

.footer {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid #e8e4e0;
    font-size: 12px;
    font-weight: 300;
    color: #a39a94;
}

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

    .container {
        max-width: 100%;
    }

    .header {
        margin-bottom: 40px;
    }

    .logo-image {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .logo-text {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .subtitle {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 5px;
    }

    .section-content {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .section {
        margin-bottom: 18px;
    }

    .section-title {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .footer {
        margin-top: 32px;
        padding-top: 14px;
        font-size: 12px;
    }
}

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

    .header {
        margin-bottom: 32px;
    }

    .logo-image {
        width: 46px;
        height: 46px;
        margin-bottom: 8px;
    }

    .logo-text {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .section-content {
        font-size: 14px;
        line-height: 1.6;
    }

    .section {
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 11px;
        margin-bottom: 7px;
    }

    .footer {
        margin-top: 26px;
        padding-top: 12px;
        font-size: 11px;
    }
}

@media (max-height: 700px) {
    body {
        padding: 16px 20px;
    }

    .header {
        margin-bottom: 28px;
    }

    .logo-image {
        width: 46px;
        height: 46px;
        margin-bottom: 8px;
    }

    .logo-text {
        font-size: 24px;
        margin-bottom: 11px;
    }

    .subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 4px;
    }

    .section {
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 11px;
        margin-bottom: 7px;
    }

    .section-content {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 6px;
    }

    .footer {
        margin-top: 24px;
        padding-top: 12px;
        font-size: 11px;
    }
}

@media (max-height: 600px) {
    body {
        padding: 12px 20px;
    }

    .header {
        margin-bottom: 22px;
    }

    .logo-image {
        width: 42px;
        height: 42px;
        margin-bottom: 6px;
    }

    .logo-text {
        font-size: 22px;
        margin-bottom: 9px;
    }

    .subtitle {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 3px;
    }

    .section {
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .section-content {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 4px;
    }

    .footer {
        margin-top: 18px;
        padding-top: 10px;
        font-size: 11px;
    }
}

