/* About Section (index.html) */
#about {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0a0a1a 0%, #16162d 100%);
}

#about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #e6e6ff;
    position: relative;
    padding-bottom: 10px;
}

.about-text h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    border-radius: 3px;
}

.about-text h4 {
    font-size: 20px;
    margin: 25px 0 15px 0;
    color: #d4d4ff;
}

.about-highlights {
    margin-bottom: 25px;
    padding-left: 0;
}

.about-highlights li {
    margin-bottom: 12px;
    list-style-type: none;
    padding: 10px 15px 10px 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border-left: 3px solid #6e45e2;
    position: relative;
    transition: all 0.3s ease;
}

.about-highlights li:hover {
    background: rgba(110, 69, 226, 0.1);
    transform: translateX(5px);
}

.about-highlights li:before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.about-highlights strong {
    color: #88d3ce;
    font-weight: 600;
}

.about-highlights a {
    color: #6e45e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-highlights a:hover {
    color: #88d3ce;
    text-decoration: underline;
}

.about-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .about-text {
        padding: 25px;
    }

    .about-icons-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 15px;
        padding: 15px;
    }
}