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

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

section {
    min-height: 100vh;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    text-align: center;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #ff7e5f;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: 20px;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: #ff6347;
}

.section1 {
    background-color: #f9f9f9;
}

.section2 {
    background-color: #ffffff;
}

.section3 {
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
    opacity: 0.8;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    section {
        padding: 3rem 1.5rem;
    }
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    padding: 0 1rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6e8efb;
}

@media screen and (min-width: 768px) {
    .features {
        flex-direction: row;
    }

    .feature {
        flex: 0 0 33.333%;
    }
}

/* New styles for the updated content */
.consequences {
    text-align: left;
    margin: 2rem auto;
    max-width: 600px;
    list-style-type: none;
}

.consequences li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.consequences li:before {
    content: "✗";
    color: #ff5e62;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.solution-features {
    margin-top: 2rem;
}

.section4 {
    background: linear-gradient(135deg, #43cea2, #185a9d);
    color: white;
}

.benefits {
    margin: 2rem 0;
    text-align: left;
    font-size: 1.1rem;
}

.benefits p {
    margin-bottom: 0.7rem;
}

@media screen and (max-width: 768px) {

    .consequences li,
    .benefits p {
        font-size: 1rem;
    }
}