.about-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-header {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-photo {
    flex-shrink: 0;
    text-align: center;
}

.about-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.artist-name {
    font-size: 2rem;
    margin: 15px 0 0 0;
    font-weight: normal;
    text-align: center;
}

.about-intro {
    flex: 1;
}

.artist-statement {
    margin-top: 20px;
}

.artist-statement h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.about-bio h2,
.about-contact h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.bio-text p {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info p {
    margin: 0 0 15px 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: border-color 0.3s ease;
}

.contact-info a:hover {
    border-bottom-color: #666;
}

/* Additional about sections styling */
.about-section {
    margin-bottom: 30px;
}

.about-section h2 {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.about-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.section-content {
    margin-top: 10px;
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
    .about-page {
        padding: 20px 15px;
    }
    
    .about-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .about-photo img {
        width: 150px;
        height: 150px;
    }
    
    .artist-name {
        font-size: 1.5rem;
    }
} 