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

.about-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.about-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.about-section {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.about-section h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.about-section li {
    padding: 0.75rem 0;
    color: #666;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.about-section li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
}

.feature-card h4 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.palettes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.palette-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    color: #333;
    font-size: 0.95rem;
}

.palette-item strong {
    color: #667eea;
    display: block;
    margin-bottom: 0.25rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.tech-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.95rem;
}

.tech-item strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-left: none;
}

.cta-section h3 {
    color: #667eea;
}

.cta-section .btn {
    margin-top: 1rem;
    display: inline-block;
}

.contact-link {
    display: inline-block;
    font-size: 1.2rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #667eea;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

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

    .about-hero h2 {
        font-size: 2rem;
    }

    .features-grid,
    .palettes-list,
    .tech-stack {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 1rem;
    }

    .about-section h3 {
        font-size: 1.25rem;
    }
}
