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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6b21a8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #6b21a8;
}

.btn-whatsapp-small {
    background: #25D366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-whatsapp-small:hover {
    background: #128C7E;
}

.hero {
    background: linear-gradient(135deg, #e9d5ff 0%, #f3e8ff 50%, #fef9c3 100%);
    padding: 120px 20px 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background: #facc15;
    color: #1f2937;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
}

.btn-cta:hover {
    background: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.5);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 80px 20px;
}

.section h2 {
    font-size: 2.2rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 40px;
}

.about {
    background: #fff;
}

.about p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 1.1rem;
    color: #4b5563;
}

.day-life {
    background: #fff;
}

.day-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.steps {
    flex: 2;
    min-width: 300px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 10px;
}

.step-number {
    background: #6b21a8;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text {
    font-size: 1.1rem;
    color: #374151;
}

.day-note {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, #fef9c3, #fde68a);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #facc15;
}

.day-note p {
    font-size: 1.1rem;
    color: #1f2937;
    font-style: italic;
}

.requirements {
    background: #f3e8ff;
}

.requirements-list {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
}

.requirements-list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 8px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 50px;
}

.requirements-list li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    color: #6b21a8;
    font-weight: bold;
}

.benefits {
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, #fef9c3, #fff);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #facc15;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: #6b21a8;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #4b5563;
}

.faq {
    background: #f9fafb;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #6b21a8;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #4b5563;
}

.cta-section {
    background: linear-gradient(135deg, #6b21a8, #9333ea);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: #1f2937;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #facc15;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 1001;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: #facc15;
}

.btn-accept {
    background: #facc15;
    color: #1f2937;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept:hover {
    background: #eab308;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .day-content {
        flex-direction: column;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}
