       .tombol-container {
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 0vh;
            font-family: sans-serif;
            display: flex;
            flex-wrap: wrap; 
            gap: 20px; 
            justify-content: center; 
            padding: 15px; 

            
        }

        .tombol {
            padding: 15px 60px;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            color: white;
            background-color: #ff0000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            text-align: center;
            min-width: px;
        }

        .tombol:hover {
            background-color: #e2e2e2;
            transform: translateY(-2px);
        }

        .tombol.secondary {
            background-color: #ffee00;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            color: rgb(0, 0, 0);
            border: none;
            border-radius: 5px;
        }

        .tombol.secondary:hover {
            background-color: #0066b4;
        }
        
        @media (max-width: 600px) {
            .tombol {
                padding: 12px 25px;
                font-size: 16px;
                min-width: 120px;
            }
            .tombol-container {
                flex-direction: column;
                align-items: center; 
            }
        }