/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Dark */
body {
    background-color: #0f172a;
    color: #e2e8f0;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #020617;
    padding: 15px 40px;
    border-bottom: 1px solid #1e293b;
}

.logo {
    color: #38bdf8;
    padding-left: 20px;
}

/* Menu */
nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #38bdf8;
}

/* Container */
.container {
    padding: 60px;
}

/* Layout kiri-kanan */
.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Teks */
.text {
    width: 50%;
}

.text h1 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #f8fafc;
}

.subtitle {
    color: #94a3b8;
    margin-bottom: 20px;
}

.text h2 {
    margin: 20px 0 10px;
    color: #38bdf8;
}

.text p {
    line-height: 1.6;
    color: #cbd5f5;
}

/* Button */
button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: white;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

button:hover {
    opacity: 0.8;
}

button>a{
    text-decoration: none;
    color: white;
}

/* Gambar */
.image {
    width: 40%;
    text-align: center;
}

.image img {
    width: 300px;
    border-radius: 5%;
    border: 3px solid #38bdf8;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
}