* {
    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: #f9f9f9;
}

header {
    background-color: #e91e63;
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    min-height: calc(100vh - 200px);
}

h1 {
    color: #e91e63;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e91e63;
}

h2 {
    color: #d81b60;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h3 {
    color: #c2185b;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
}

section {
    margin-bottom: 2rem;
}

.hero {
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    color: white;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.hero h1 {
    color: white;
    border-bottom: 3px solid white;
}

.hero p {
    color: white;
    font-size: 1.1rem;
}

.features ul,
section ul {
    list-style: none;
    padding-left: 0;
}

.features li,
section ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features li:before,
section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
    font-size: 1.2rem;
}

footer {
    background-color: #333;
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

footer a {
    color: #e91e63;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff4081;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    footer a {
        display: block;
        margin: 0.5rem 0;
    }
}
