:root {
    --primary-color: #FF8888;
    --secondary-color: #ffbdbd;
    --text-dark: #333;
    --text-light: #666;
    --background: #fff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--background);
    margin: 0;
    padding: 20px 10px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
}

/* Hero */

.hero-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */

.content {
    padding: 3rem 2.5rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 189, 189, 0.1);
    border-radius: 10px;
    font-style: italic;
}

/* Sections */

.section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Steps */

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    margin-left: 50px;
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    padding: 0.8rem 0;
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 189, 189, 0.1);
    border-radius: 0 8px 8px 0;
    position: relative;
}

/* Summary */

.summary-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(255, 189, 189, 0.3) 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    margin-top: 3rem;
}

.summary-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.summary-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer */

.footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--secondary-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .content {
        padding: 2rem 1.5rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .step-content {
        margin-left: 0;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .hero-image {
        height: 200px;
    }
}
