* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        flex-direction: column; /* Menyusun logo dan menu secara vertikal */
        align-items: center;
        background-color: #ffffff; /* Latar belakang putih tebal */
        padding: 12px 15px;
        position: relative;
        z-index: 1000; /* Memastikan navbar tidak tertutup gambar/elemen lain */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        display: flex !important;
        flex-wrap: wrap; /* Mencegah teks terpotong ke samping */
        justify-content: center;
        gap: 12px;
        margin-top: 10px;
        padding: 0;
    }

    .nav-links a {
        color: #333333 !important; /* Warna teks gelap yang kontras */
        font-size: 0.9rem;
        text-decoration: none;
    }
}

.logo {
  display: flex;
  align-items: center; /* Menyeseuaikan posisi vertikal agar sejajar di tengah */
  gap: 0.5px;
  font-weight: 800;
  font-size: 1.5rem;
  color: #0d233a;
}

.logo-img {
  height: 65px;        /* Atur tinggi logo sesuai kebutuhan */
  width: auto;         /* Mempertahankan rasio lebar gambar */
}
.nav-links a {
  margin: 0 1rem;
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

.nav-links a.active, .nav-links a:hover {
  color: #0d233a;
  border-bottom: 2px solid #0d233a;
  padding-bottom: 4px;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-login {
  text-decoration: none;
  color: #333;
}

.btn-signup {
  text-decoration: none;
  background-color: #0e2740;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 8%;
  background-color: #f8f9fa;
  gap: 3rem;
}

.hero-content .sub-heading {
  color: #666;
  font-size: 1.6rem;
}


.hero-content h1 {
  font-size: 2.8rem;
  color: #111;
  margin: 0.8rem 0;
  line-height: 1.2;
}

.hero-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.btn-cta {
  display: inline-block;
  background-color: #0e2740;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsif untuk Layar HP */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .nav-links {
     /*display: none; Dapat diganti dengan toggle hamburger menu */
  }
}
/* --- Pricing Page Styling --- */
.pricing-section {
    padding: 50px 20px;
    text-align: center;
    max-width: 40%;
    margin: 0 auto;
}

.pricing-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #333;
}

.pricing-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Container utama Flexbox (Kiri & Kanan) */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Menyusun ke bawah jika layar HP */
}

/* Kartu Produk/Layanan */
.pricing-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    width: 40%;
    max-width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Gambar Building */
.pricing-img {
    width: 40%;
    height: 250px;
    object-fit: cover;
}

/* Konten Dalam Kartu */
.pricing-content {
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-content h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #222;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.features li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    font-size: 0.95rem;
    color: #444;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Tombol */
.btn-pricing {
    margin-top: auto;
    display: block;
    padding: 12px 20px;
    background-color: #0056b3;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.btn-pricing:hover {
    background-color: #003d80;
}

/* --- Contact Page Styling --- */
.contact-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1rem;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Menyesuaikan tata letak ke bawah saat dibuka di HP */
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #222;
}

.contact-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-card a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}