body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #ff9a9e, #fad0c4);
    color: #333;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    color: white;
    background: linear-gradient(to bottom, #ff758c, #ff7eb3);
}

.animated-text {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: fadeIn 2s ease-in-out;
}

.subtext {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-btn {
    padding: 10px 20px;
    background-color: #fff;
    color: #ff758c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #ff4f72;
    color: white;
    transform: scale(1.1);
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.feature {
    text-align: center;
    flex: 1;
    max-width: 300px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-in-out;
}

.feature i {
    font-size: 2rem;
    color: #ff758c;
    margin-bottom: 10px;
}

footer.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.usage-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}
.usage-image {
    flex: 0 0 100%;
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
}
.prev-btn {
    left: 10px;
}
.next-btn {
    right: 10px;
}
.usage-description {
    text-align: center;
    margin-top: 10px;
    font-size: 1rem;
}
.hidden {
    display: none;
}