.logo-container {
    position: absolute;
    /* Posisi absolute untuk gambar */
    top: 0;
    /* Menentukan jarak atas halaman */
    left: 0;
    /* Menentukan jarak kiri halaman */
    z-index: 2;
    /* Menempatkan gambar di belakang semua elemen */
}

.logo-container img {
    width: 70%;
    /* Mengatur lebar gambar menjadi 50% dari lebar halaman */
    height: auto;
    /* Menjaga proporsi gambar */
}

.hero-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    /* Changed from 95vh to eliminate gap */
    z-index: 1;
}

.left-side {
    position: relative;
    flex: 0 0 684px;
    padding-left: 7em;
    z-index: 3;
    color: #2E8B57;
}

.hero-container h1,
.hero-container p {
    margin-top: 20px;
    /* Reduced from 55px */
    margin-bottom: 20px;
    /* Reduced from 55px */
}

.svg-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* Added left: 0 to ensure full span */
    width: 100%;
    /* Changed from auto to 100% to fill container */
    height: 100%;
    z-index: -1;
}

.svg-background-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    /* Changed from left: 50% to position at bottom-right */
    transform: none;
    /* Removed translateX */
    z-index: 0;
    width: auto;
    height: auto;
    max-width: 60%;
    /* Allow sufficient width for the blob */
}

@media (max-width: 768px) {
    /* Hero Section Mobile - CLEAN VERSION (no CSS blobs) */

    .section {
        overflow-x: hidden !important;
        max-width: 100vw;
        position: relative;
    }

    /* Main hero container */
    .hero-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        height: 100vh;
        padding: 90px 1.5rem 2rem;
        overflow: hidden;
        max-width: 100vw;
        width: 100%;
        box-sizing: border-box;
        position: relative;
    }

    /* Content */
    .left-side {
        position: relative;
        flex: none;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        z-index: 10;
        color: #2E7D32;
        box-sizing: border-box;
    }

    /* Logo - TOP LEFT CORNER */
    .logo-container {
        position: absolute;
        top: 20px;
        left: 20px;
        width: auto;
        display: block;
        z-index: 50;
    }

    .logo-container img {
        width: 110px;
        height: auto;
    }

    /* Typography */
    .hero-container h1 {
        font-size: 1.7rem;
        line-height: 1.3;
        margin: 0 0 1rem;
        font-weight: 700;
        color: #2E7D32;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-container p {
        font-size: 0.88rem;
        line-height: 1.5;
        margin: 0 0 2rem;
        text-align: center;
        color: #2E7D32;
        width: 100%;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    button {
        display: inline-block;
        margin: 0;
        padding: 12px 32px;
        font-size: 0.95rem;
        border-radius: 28px;
        white-space: nowrap;
        background-color: #2E7D32;
        color: white;
        border: none;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    }

    /* Social icons wrapper */
    .social-wrapper {
        margin-top: auto;
        padding-bottom: 2.5rem;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    /* HIDE all background SVG elements - user will add backgrounds */
    .svg-background,
    .svg-background-2 {
        display: none !important;
    }
}