* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.6;
}
.header {
    background: #fff;
    border-bottom: 3px solid #e63946;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo {
height: 50px;
}
.nav-menu a {
    margin: 0 10px;
    text-decoration: none;
    color: #222;
    font-weight: bold;
    transition: 0.3s;
}
.nav-menu a:hover {
    color: #0077b6;
}
.header-right {
    display: flex;
    gap: 10px;
}
.btn-login, .btn-daftar {
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-login {
    border: 2px solid #0077b6;
    color: #0077b6;
}
.btn-login:hover {
    background: #0077b6;
    color: #fff;
}
.btn-daftar {
    background: #e63946;
    color: #fff;
}
.btn-daftar:hover {
    background: #c92c38;
}
.marquee {
    overflow: hidden;
    white-space: nowrap;
    background: #222;
    color: #fff;
    padding: 8px 0;
}
.marquee span {
    display: inline-block;
    animation: jalan 25s linear infinite;
    font-size: 14px;
}
@keyframes jalan{
    0% { transform: translateX(100%);}
  100% { transform: translateX(-100%);}
}
.banner {
    display: flex;
    gap: 20px;
    padding: 30px 20px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}
.banner-img img{
    width: 400px;
    height: auto;
    border-radius: 10px;
}
.banner-desc {
    flex: 1;
}
.banner-desc h1{
    color: #e63936;
    margin-bottom: 15px;
    font-size: 28px;
}
.banner-desc h1 em {
    color: #0077b6;
    font-style: normal;
}
.banner-desc p {
    text-align: justify;
    font-size: 16px;
    color: #222;
}
.artikel {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.artikel h2 {
    color: #e63946;
    margin-bottom: 15px;
    border-bottom: 3px solid #0077b6;
    padding-bottom: 8px;
}
.artikel h3 {
    margin: 20px 0 10px;
    color: #0077b6;
}
.artikel p {
    text-align: justify;
    margin-bottom: 10px;
    color: #222;
}
.artikel ul {
    margin: 15px 0 15px 25px;
}
.artikel ul li {
    margin-bottom: 5px;
    color: #222;
}
.artikel ul li::marker {
    color: #e63946;
}
.ulasan {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px 20px;
}
.ulasan h2 {
    color: #e63946;
    margin-bottom: 20px;
    border-bottom: 3px solid #0077b6;
    padding-bottom: 8px;
}
.review-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 5px solid #e63946;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}
.review-card h3 {
    color: #0077b6;
    margin-bottom: 5px;
}
.bintang{
    color: #f4b400;
    font-size: 18px;
    margin-bottom: 10px;
}
.review-card p {
    text-align: justify;
    color: #222;
}
.faq {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
}
.faq h2 {
    color: #e63946;
    border-bottom: 3px solid #0077b6;
    padding-bottom: 8px;
}
.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 5px solid #e63946;
    background: #fafafa;
    border-radius: 5px;
}
.faq-item h3 {
    color: #0077b6;
    margin-bottom: 8px;
    font-size: 17px;
}
.faq-item p {
    text-align: justify;
    color: #222;
}
.footer {
    background: #222;
    color: #fff;
    margin-top: 40px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    flex-wrap: wrap;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-col h3 {
    color: #f4b400;
    margin-bottom: 10px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 5px;
}
.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.footer-col a:hover {
    color: #0077b6;
}
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #111;
    color: #fff;
    font-size: 14px;
}
.footer-bottom p {
    color: #fff;
}
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 10px;
    }
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .banner {
        flex-direction: column;
    }
    .banner-img img {
        width: 100%;
    }
    .banner-desc h1 {
        font-size: 22px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}