body {
    background: rgba(0, 255, 255, 0.8); /* Warna cyan dengan opacity 0.8 */
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    text-align: center;
    animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.logo {
    width: 150px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.testimoni-button {
    display: inline-block;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    text-align: center;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.testimoni-button:hover {
    background-color: #0d47a1;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.product {
    text-align: center;
    width: 250px;
    background: rgba(255, 255, 255, 0.9); /* Latar belakang produk transparan */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.img-container {
    background: rgba(255, 255, 255, 0.9);
    width: 200px;
    height: 200px;
    padding: 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.img-container.selected {
    border: 3px solid #1565c0;
    box-shadow: 0 0 20px rgba(21, 101, 192, 0.5);
    transform: scale(1.1);
}

.product-img {
    width: 95%;
    height: 95%;
    object-fit: cover;
    border-radius: 10px;
    animation: float 3s ease-in-out infinite;
}

.product-text {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    color: #2e7d32;
}

.title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #1565c0;
}

.advantages {
    text-align: left;
    margin-top: 30px;
    display: inline-block;
    background: rgba(255, 243, 224, 0.8); /* Latar belakang transparan */
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.advantages li {
    font-size: 18px;
    margin: 15px 0;
    color: #d84315;
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.advantages li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2e7d32;
}

.copyright-footer {
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    font-size: 16px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
    }
