 .hero-skill {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            padding: 5rem 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            min-height: 85vh;
        }
        .hero-text {
            flex: 1;
            min-width: 280px;
            color: var(--cream);
        }
        .hero-text h1 {
            font-size: 4rem;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
            color: var(--cream);
        }
        .hero-text .skill-tag {
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            color: var(--beige);
        }
        .hero-text .institution {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        .btn-daftar {
            display: inline-block;
            background: var(--button-bg);
            color: var(--cream);
            padding: 14px 40px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: 0.3s;
            border: 2px solid transparent;
        }
        .btn-daftar:hover {
            background: var(--button-hover);
            transform: translateY(-3px);
            border-color: var(--beige);
        }
        .hero-image {
            flex: 1;
            min-width: 480px;
            display: flex;
            justify-content: center;
        }
        .image-placeholder {
            width: 100%;
            max-width: 650px;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 1rem;
            text-align: center;
            backdrop-filter: blur(2px);
            border: 2px dashed var(--beige);
        }
        .image-placeholder img {
            width: 100%;
            height: auto;
            border-radius: 12px;
        }
        /* Hilangkan tulisan di bawah gambar */
        .image-placeholder p {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-skill {
                flex-direction: column;
                text-align: center;
                padding: 3rem 5%;
            }
            .hero-text h1 {
                font-size: 2.5rem;
            }
            .hero-text .skill-tag {
                font-size: 1.5rem;
            }
            .hero-text .institution {
                font-size: 1.2rem;
            }
            .image-placeholder {
                max-width: 320px;
            }
        }