/* Reset dasar */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
}

/* Header */
header {
    background: linear-gradient(135deg, #4A90E2, #145388);
    color: #fff;
    padding: 50px 20px;
    position: relative;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.nav-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.nav-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9em;
    border-radius: 5px;
    background: #FFD700;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.nav-buttons .btn:hover {
    background: #FFC107;
    transform: scale(1.05);
}

/* Tombol responsif */
@media (max-width: 768px) {
    .nav-buttons {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
}

/* Fitur */
#features {
    padding: 60px 20px;
    background: #fff;
}

#features h2, #pricing h2 {
    font-size: 2em;
    color: #145388;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.feature {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: left;
}

.feature h3 {
    color: #4A90E2;
}

/* Harga */
#pricing {
    padding: 60px 20px;
    background: #f1f1f1;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.price-option {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: left;
}

.price-option h3 {
    color: #4A90E2;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.price {
    font-size: 1.7em;
    font-weight: bold;
    margin: 15px 0;
    color: #145388;
}

.price-description {
    font-size: 1em;
    text-align: center;
    color: #666;
    margin-bottom: 15px;
}

.price-option .btn {
    display: block;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 8px;
    background: #4A90E2;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.price-option .btn:hover {
    background: #145388;
    transform: scale(1.05);
}

/* Call to Action */
#cta {
    padding: 60px 20px;
    background: #145388;
    color: #fff;
}

#cta .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    font-size: 1.2em;
    border-radius: 8px;
    background: #FFD700;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

#cta .btn:hover {
    background: #FFC107;
    transform: scale(1.05);
}



/* Footer */
footer {
    padding: 25px;
    background: #333;
    color: #fff;
}
