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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    color: #222222;
    background: #FFFFFF;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    padding: 80px 0 32px;
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
    border: 1px solid #C8E6C9;
}

h1 {
    color: #222222;
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    font-size: 22px;
    color: #717171;
    margin-bottom: 48px;
    font-weight: 400;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-section {
    background: #222222;
    color: white;
    padding: 80px 24px;
    margin: 32px 0 64px;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.1;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, #E91E63, #D81B60);
    color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.btn-primary:hover {
    box-shadow: 0 8px 16px rgba(233, 30, 99, 0.3);
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: #222222;
    border: 1px solid #DDDDDD;
}

.btn-secondary:hover {
    background: #F7F7F7;
    border-color: #222222;
}

.content-section {
    padding: 64px 24px;
}

h2 {
    color: #222222;
    margin-bottom: 32px;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h3 {
    color: #222222;
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
}

.intro-text {
    font-size: 18px;
    color: #717171;
    line-height: 1.7;
    margin-bottom: 32px;
}

p {
    color: #717171;
}

.info-box {
    padding: 32px;
    margin: 32px 0;
    border-radius: 12px;
    border: 1px solid;
}

.info-box.warning {
    background: #FFF8E1;
    border-color: #FFC107;
}

.info-box.alert {
    background: #FFEBEE;
    border-color: #EF5350;
}

.info-box.success {
    background: #E8F5E9;
    border-color: #66BB6A;
}

.info-box h3 {
    margin-top: 0;
    color: inherit;
}

.info-box.warning h3 {
    color: #F57C00;
}

.info-box.alert h3 {
    color: #D32F2F;
}

.info-box.success h3 {
    color: #388E3C;
}

.info-box ul {
    margin-left: 24px;
    margin-top: 16px;
}

.info-box li {
    margin: 16px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #222222;
}

.info-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #222222;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
    margin: 32px 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.benefit-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #EBEBEB;
    transition: all 0.2s ease;
}

.benefit-card:hover {
    border-color: #222222;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.benefit-card h4 {
    color: #222222;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.benefit-card p {
    color: #717171;
    font-size: 16px;
    line-height: 1.6;
}

.timeline {
    margin-top: 48px;
    display: grid;
    gap: 16px;
}

.timeline-item {
    background: #F7F7F7;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #222222;
}

.timeline-item h4 {
    color: #222222;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.timeline-item p {
    color: #717171;
    font-size: 16px;
    line-height: 1.7;
}

.steps-grid {
    display: grid;
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #EBEBEB;
    transition: all 0.2s ease;
}

.step-card:hover {
    border-color: #222222;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #222222;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.step-card h3 {
    margin-top: 0;
    color: #222222;
    margin-bottom: 12px;
}

.step-card p {
    color: #717171;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 16px;
}

.contact-box {
    background: #F7F7F7;
    padding: 96px 24px;
    text-align: center;
}

.contact-box h2 {
    color: #222222;
    margin-bottom: 24px;
}

.contact-box p {
    font-size: 18px;
    color: #717171;
    max-width: 640px;
    margin: 0 auto 16px;
}

footer {
    text-align: center;
    padding: 48px 24px;
}

footer p {
    margin: 8px 0;
    font-size: 16px;
    color: #717171;
}

.reviews-grid {
    display: grid;
    gap: 24px;
    margin-top: 48px;
}

.review-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #EBEBEB;
    transition: all 0.2s ease;
}

.review-card:hover {
    border-color: #D32F2F;
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.1);
}

.reviewer-name {
    color: #222222;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.review-text {
    color: #222222;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    white-space: pre-line;
}

.review-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1976D2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.review-link:hover {
    color: #1565C0;
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    header {
        padding: 48px 0 64px;
    }

    .content-section {
        padding: 64px 24px;
    }

    .cta-section {
        padding: 64px 24px;
        margin: 64px 0;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}
