/* hero.css */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 20px 100px; /* Adjusted padding to move the section below the header */
    height: auto; /* Allow height to adjust based on content */
    background-color: #f4f4f4;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-left {
    flex: 1;
    text-align: center;
}

.hero-left .profile-photo {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-right {
    flex: 2;
    margin-left: 40px;
}

.hero-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-right h3 {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.hero-right p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}