.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 0.8s ease;
}

.about-content {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.about-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInDown 0.6s ease;
}

.about-content > p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.features, .disclaimer {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    animation: slideInUp 0.6s ease;
    position: relative;
    transition: all 0.3s ease;
}

.features:hover, .disclaimer:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.features h3, .disclaimer h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features h3::before {
    content: '';
    font-size: 1.2rem;
}

.disclaimer h3::before {
    content: '';
    font-size: 1.2rem;
}

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

.features li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
    animation: fadeInLeft 0.6s ease;
}

.features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.features li:hover::before {
    transform: translateX(3px);
}

.features li:nth-child(1) { animation-delay: 0.3s; }
.features li:nth-child(2) { animation-delay: 0.4s; }
.features li:nth-child(3) { animation-delay: 0.5s; }
.features li:nth-child(4) { animation-delay: 0.6s; }
.features li:nth-child(5) { animation-delay: 0.7s; }

.disclaimer p {
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.features:last-of-type {
    background: linear-gradient(135deg, var(--bg-color), var(--card-bg));
    border: 1px solid var(--primary-red);
}

.features:last-of-type h3::before {
    content: '';
}

.features:last-of-type li::before {
    content: '';
}

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 1rem;
    }
    
    .about-content {
        padding: 2rem;
        border-radius: 0.75rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content > p {
        font-size: 1rem;
    }
    
    .features, .disclaimer {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .features h3, .disclaimer h3 {
        font-size: 1.3rem;
    }
    
    .features li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 1.5rem;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
    }
    
    .features, .disclaimer {
        padding: 1.25rem;
    }
    
    .features h3, .disclaimer h3 {
        font-size: 1.2rem;
    }
    
    .features li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .disclaimer p {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-container,
    .about-content h2,
    .about-content > p,
    .features,
    .disclaimer,
    .features li {
        animation: none;
        transition: none;
    }
    
    .features:hover, .disclaimer:hover {
        transform: none;
    }
    
    .features li:hover::before {
        transform: none;
    }
}