/* About page specific styles */
.about-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 2rem auto 0;
    border: 1px solid #f1f5f9;
    line-height: 1.8;
    color: #4a5568;
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
    text-align: center;
    font-weight: 800;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-content a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.about-content a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

.contact-info {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .about-content h1 {
        font-size: 2rem;
    }
}

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