 /* Hero section */
 .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 500px;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2E86AB;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

.hero-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}



/* Responsive design */
@media (max-width: 768px) {
    nav {
        justify-content: center;
        padding: 15px;
    }

    nav a {
        margin: 0 15px;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 50px 20px;
    }

    .hero-image {
        margin-bottom: 30px;
        width: 200px;
        height: 200px;
    }
}