.k-hgp-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.k-hgp-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}

.k-hgp-left-col {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}


.k-hgp-right-col {
    flex: 1;
    min-width: 300px;
}

/* Title */
.k-hgp-title h2 {
    font-size: 40px;
    line-height: 1.2;
    color: #166534;
    font-weight: 700;
    margin-bottom: 25px;
}

.k-hgp-title h2 .shine-text {
    background: linear-gradient(to right, #166534 0%, #32b32c 12%, #32b32c 22%, #166534 38%);
    background-size: 200% auto;
    background-position: -100% center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-heading 3.2s linear infinite;
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.k-hgp-title h2 .shine-text.is-visible {
    animation-play-state: running;
}

@keyframes shine-heading {
    0% {
        background-position: 100% center;
    }

    85% {
        background-position: -100% center;
    }

    100% {
        background-position: -100% center;
    }
}

/* Description */
.k-hgp-description {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.k-hgp-description p {
    margin-bottom: 15px;
}

.k-hgp-form {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #55A630;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.k-hgp-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 15px 25px;
    font-size: 16px;
    background: transparent;
    color: #333;
    border-radius: 50px 0 0 50px;
}

.k-hgp-input::placeholder {
    color: #999;
}

.k-hgp-submit-btn {
    background: linear-gradient(135deg, #55A630 0%, #448925 100%);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(85, 166, 48, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.k-hgp-submit-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.k-hgp-submit-btn:hover {
    box-shadow: 0 6px 20px rgba(85, 166, 48, 0.4);
}



.k-hgp-images-container {
    display: flex;
    align-items: flex-end;
    justify-content: end;
    gap: 20px;
    position: relative;
}

.k-hgp-img-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.k-hgp-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.k-hgp-img-1 {
    width: 120px;
    height: 130px;
}

.k-hgp-img-2 {
    width: 120px;
    height: 220px;
}

.k-hgp-img-3 {
    width: 120px;
    height: 320px;
}

@media (max-width: 768px) {
    .k-hgp-inner {
        flex-direction: column;
        text-align: center;
    }

    .k-hgp-form {
        max-width: 100%;
    }



    .k-hgp-description {
        margin-left: auto;
        margin-right: auto;
    }

    .k-hgp-images-container {
        height: auto;
        justify-content: center;
        margin-top: 40px;
    }
}