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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.header p {
    font-size: 1.1em;
    opacity: 0.95;
}

.content {
    padding: 40px 30px;
}

.alert-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.alert-box strong {
    color: #856404;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
}

h2 {
    color: #f5576c;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8em;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

h3 {
    color: #f093fb;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.3em;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

.step-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.step {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #f5576c;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.1em;
}

.step-content {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 55px);
}

ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

ul li {
    margin-bottom: 8px;
}

.contact-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
}

.contact-box h3 {
    color: white;
    margin-top: 0;
}

.contact-box a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s;
}

.contact-box a:hover {
    border-bottom-color: white;
}

.footer {
    background: #f8f9fa;
    padding: 20px 30px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }

    .content {
        padding: 30px 20px;
    }

    h2 {
        font-size: 1.5em;
    }

    .step-number {
        display: block;
        margin-bottom: 10px;
    }

    .step-content {
        display: block;
        width: 100%;
    }
}
