/* Hero 2 Section */
.hero_2 {
    padding: 20px 0 20px;
}

.hero_2-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero_2-text {
    max-width: 600px;
}

.hero_2-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.hero_2-text h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero_2-text p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero_2-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hover effect */
.profile-image:hover {
    transform: translateY(-10px);
}

/* Media queries */
@media (max-width: 768px) {
    
    .hero_2-text h1 {
        font-size: 2.2rem;
    }
    
    .hero_2-text h2 {
        font-size: 1.4rem;
    }
    
    .profile-image {
        width: 220px;
        height: 220px;
    }
}
