.about-container {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-container img {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid var(--light-grey-border);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.1),
        0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content h3 {
    font-size: var(--font-size-5xl);
    color: var(--text-color);
    margin-bottom: 1rem;
}

.about-content p {
    font-size: var(--font-size-lg);
    color: var(--text-color-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}