@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 100px; /* Default ukuran sedang */
    display: block;
    border-radius: 10px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    header {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .logo {
        width: 120px; /* Ukuran lebih besar di Desktop */
        margin-bottom: 0;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #18181B;
    color: #fff;
    text-align: center;
}

.logo {
    width: 80px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

.title {
    font-size: 24px;
    margin-bottom: 20px;
}

.pricing {
    padding: 20px;
}

.header {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1d4ed8;
}

.card {
    background-color: #27272a;
    padding: 20px;
    margin: 10px auto;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
}

h3 {
    color: #1d4ed8;
}

button {
    background-color: #1d4ed8;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #1e40af;
}

footer {
    background-color: #27272a;
    padding: 10px;
    margin-top: 20px;
}

.footer-text {
    color: white;
}

.footer-text a {
    color: #1d4ed8;
    text-decoration: none;
}
