body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #2c3e50; color: white; text-align: center; padding: 20px; } .container { display: flex; flex-direction: column; align-items: center; padding: 20px; max-width: 1200px; margin: 0 auto; } .main-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; } .text-content { flex: 1; max-width: 600px; text-align: left; } .text-content h1 { font-size: 2.5rem; color: #333; } .text-content p { font-size: 1.2rem; line-height: 1.6; color: #555; } .cta-buttons { margin-top: 20px; } .cta-buttons a { text-decoration: none; color: white; background: linear-gradient(to bottom, #00aeff 0%, #1b1b1b 100%); padding: 10px 20px; border-radius: 5px; margin-right: 0px; font-weight: bold; } .cta-buttons a:hover { background: linear-gradient(to bottom, #00aeff 0%, #1b1b1b 100%); } .image-container { flex: 1; max-width: 500px; } .image-container img { width: 100%; height: auto; border-radius: 8px; } footer { background-color: #2c3e50; color: white; text-align: center; padding: 10px; position: fixed; bottom: 0; width: 100%; } /* Responsiveness for mobile */ @media (max-width: 768px) { .main-content { flex-direction: column; } .cta-buttons { text-align: center; } }  { background: #f0f0f0; padding: 12px; border-radius: 8px; margin-bottom: 12px; font-size: 14px; line-height: 1.4; } .review-section { background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.1); margin: 40px 0; /* beri jarak dengan atas dan bawah */ width: 100%; /* biar full */ } .comment-form { display: flex; flex-direction: column; gap: 10px; } .comment-form textarea { padding: 12px; border-radius: 10px; border: 1px solid #ccc; resize: vertical; min-height: 80px; font-size: 14px; } .comment-form button { align-self: flex-start; background-color: #28a745; color: #fff; border: none; padding: 10px 20px; border-radius: 8px; cursor: pointer; transition: background 0.3s ease; } .comment-form button:hover { background-color: #218838; } .rating { display: flex; gap: 5px; font-size: 24px; color: #ccc; cursor: pointer; } .rating .star.selected, .rating .star:hover, .rating .star:hover ~ .star { color: gold; } .comments { margin-top: 30px; } .comment { background-color: #f5f5f5; padding: 15px; border-radius: 10px; margin-bottom: 15px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); } .comment .stars { color: gold; font-size: 18px; margin-bottom: 5px; } .comment .name { margin-top: 5px; font-weight: bold; } .n-columns-2 { display: grid; grid-template-columns: repeat(2,1fr); font-weight: 700; } .n-columns-2 a { text-align: center; } .login, .register { color: #fff; padding: 13px 10px; } .login, .login-button { background: linear-gradient(to bottom, #00aeff 0%, #1b1b1b 100%); border: 2px solid #00c5ff; box-shadow: 0px 0px 3px #00c5ff; } .register, .register-button { background: linear-gradient(to bottom, #00aeff 0%, #1b1b1b 100%); border: 2px solid #00c5ff; box-shadow: 0px 0px 3px #00c5ff; } .logo-container { position: absolute; top: 10px; flexbox: 10px; z-index: 1000; } .logo-kecil { width: 250px; /* Ukuran bisa kamu sesuaikan */ height: auto; }
.faq-container { width: 100%; margin: 40px auto; font-family: Arial, sans-serif; } .faq-title { font-size: 24px; font-weight: bold; margin-bottom: 20px; } .faq-item { margin-bottom: 15px; border-bottom: 1px solid #ccc; padding-bottom: 10px; } .faq-question { cursor: pointer; font-weight: bold; padding: 10px; background: #f7f7f7; border-radius: 5px; transition: background 0.3s; } .faq-question:hover { background: #eaeaea; } .faq-answer { display: none; padding: 10px; padding-left: 15px; background: #fcfcfc; margin-top: 5px; border-left: 3px solid #007bff; border-radius: 3px; }