
    /* HERO SECTION */
.hero-creators {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    background: #f6efe7;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.hero-content {
    max-width: 55%;
}

.hero-content h1 {
    font-size: 42px;
    color: #3b2f2f;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #4a6a3d;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    max-width: 520px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: #4a6a3d;
    color: #fff;
}

.btn-primary:hover {
    background: #3a5630;
}

.btn-secondary {
    background: #1f4e79;
    color: #fff;
}

.btn-secondary:hover {
    background: #173b5c;
}

/* RIGHT IMAGE */
.hero-image {
    max-width: 40%;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* CAPTION */
.creator-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-creators {
        padding: 40px 20px;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}


