/* Features List Component Styles */
.features-list {
    color: var(--white);
    text-align: left;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: slide-up 0.5s ease-out 0.2s backwards;
}

.features-list h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--white);
}

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

.features-list li {
    margin-bottom: 15px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-list li i {
    margin-right: 12px;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.features-list li:nth-child(1) i { color: #FFD700; }  /* Disease Detection */
.features-list li:nth-child(2) i { color: #98FB98; }  /* Treatment */
.features-list li:nth-child(3) i { color: #87CEEB; }  /* Calendar */
.features-list li:nth-child(4) i { color: #DDA0DD; }  /* Monitoring */
.features-list li:nth-child(5) i { color: #F0E68C; }  /* Weather */
.features-list li:nth-child(6) i { color: #FF69B4; }  /* Guidelines */

.features-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
