.hero-section {
    width: 100%;
    padding: 20px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--color-white);
}

.hero-btn {
    padding: 12px 25px;
    font-size: 20px;
    background-color: var(--color-green);
    border: none;
    border-radius: 6px;
    color: var(--color-white);
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--color-gray);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid var(--color-dark-muted-blue);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
    border: 2px solid var(--color-green);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px #ffffff1a;

}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }
}