.about {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px var(--glow-color);
    animation: fadeInUp 0.8s ease;
}

.about-content {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    animation: fadeInUp 0.8s ease 0.2s;
    border: 1px solid rgba(243, 200, 8, 0.1);
    transition: all 0.3s ease;
}

.about-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(229, 222, 34, 0.2);
    border-color: var(--primary-color);
}

.about-text {
    text-align: right;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
}

.about-text ul {
    list-style: none;
    columns: 2;
    column-gap: 2rem;
    margin-top: 2rem;
}

.about-text li {
    margin-bottom: 1rem;
    padding-right: 1.5rem;
    position: relative;
    break-inside: avoid;
}

.about-text li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    right: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .about-text ul {
        columns: 1;
    }
    
    .about-content {
        padding: 1.5rem;
    }
}
