.about-layout { 
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; 
    padding: 180px 8% 100px; align-items: center; 
}
.about-visual img { 
    width: 100%; border-radius: 4px; 
    box-shadow: 20px 20px 0px var(--light); /* Stylized shadow */
    transition: 0.5s;
}
.about-visual:hover img { transform: scale(0.98); }

.about-content h1 { font-size: 5rem; line-height: 1; margin-bottom: 20px; }
.subtitle { font-size: 1.2rem; color: var(--primary); font-weight: 600; margin-bottom: 30px; display: block; }
.about-content p { color: #555; max-width: 500px; margin-bottom: 40px; }

.about-stats { 
    display: flex; gap: 60px; padding-top: 30px; border-top: 1px solid #eee; margin-bottom: 40px; 
}
.stat strong { font-size: 3rem; font-family: 'Syne'; color: var(--dark); display: block; line-height: 1; }
.stat p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--grey); margin-top: 10px; }