

#about-me-intro {
    padding: var(--section-padding);
    display: flex;
    justify-content: center;
}

.profile-text {
    background: var(--bg-panel);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 850px;
    transition: var(--transition-slow);
}

.profile-text:hover {
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.profile-text h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--primary-orange);
    display: inline-block;
    padding-bottom: 10px;
}

.profile-text p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.8;
}

.profile-text strong {
    color: var(--primary-orange);
    font-weight: 600;
}

@media (max-width: 768px) {
    .profile-text {
        padding: 30px 20px;
    }
    
    .profile-text h1 {
        font-size: 1.8rem;
    }
}