/* Add custom styles for the About Me page here */

.about-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
}

.about-main-section {
    width: 100%;
    max-width: 1200px;
    padding: 6rem 2rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface-elevated);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-level-2);
}

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

.about-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--dl-color-gray-500);
}

.about-content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image-container {
    flex: 1;
    max-width: 400px;
}

.about-profile-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-text-container {
    flex: 1.5;
}

.about-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dl-color-gray-700);
}

/* Responsive styles */
@media (max-width: 768px) {
    .about-content-wrapper {
        flex-direction: column;
    }

    .about-image-container {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}
