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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header {
    background-color: #FF6B6B;
    color: white;
    padding: 2rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

.intro {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
}

h3 {
    color: #FF6B6B;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.steps ol {
    counter-reset: step-counter;
    list-style: none;
}

.steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.steps li:last-child {
    border-bottom: none;
}

.steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FF6B6B;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.steps strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.steps p {
    color: #666;
}

.data-info ul {
    list-style-position: inside;
    margin-left: 1rem;
    color: #666;
}

.data-info ul li {
    margin-bottom: 0.5rem;
}

.contact {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.contact p {
    margin-bottom: 0.5rem;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1.5rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer p:last-child {
    margin-bottom: 0;
}

footer a {
    color: #FF6B6B;
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
}

.button-container {
    margin-top: 2rem;
}

.delete-button {
    display: inline-block;
    background-color: #FF6B6B;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 107, 107, 0.3);
}

.delete-button:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(255, 107, 107, 0.4);
}

.delete-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

.button-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .container {
        box-shadow: none;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header h2 {
        font-size: 1.2rem;
    }
    
    main {
        padding: 1rem;
    }
    
    .steps li {
        padding-left: 2.5rem;
    }
}