#about {
    padding: 120px 5% 5rem;
}

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

.about-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
    font-family: var(--heading-font);
}

.about-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.highlight {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-family: var(--heading-font);
    text-align: center;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.company-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(124, 77, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-item h3 {
    font-family: var(--heading-font);
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .about-content {
        padding: 2rem;
    }
    
    .company-values {
        grid-template-columns: 1fr;
    }
} 