.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
    max-width: 1100px; /* Limits width on desktop */
    margin: 0 auto;    /* Centers the container */
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 { font-size: 48px; margin-bottom: 10px; }
.hero-text p { font-size: 22px; color: #d6d5d5; }

.hero-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #149ddd;
}

.hero-socials {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.hero-socials a { font-size: 24px; color: #fff; transition: 0.3s; }
.hero-socials a:hover { color: #149ddd; }

@media (max-width: 768px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-socials { justify-content: center; }
    .hero-image img { width: 200px; height: 200px; }
}