/* =======================================
   GLOBAL STYLE
======================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

/* =======================================
   CONTAINER
======================================= */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* =======================================
   HEADINGS
======================================= */
h1, h2, h3 {
  color: #0d6efd;
  margin-top: 0;
}

h1 {
  font-size: 32px;
  border-bottom: 3px solid #0d6efd;
  padding-bottom: 10px;
}

h2 {
  font-size: 26px;
  margin-top: 30px;
}

h3 {
  font-size: 20px;
}

/* =======================================
   PARAGRAPH & LIST
======================================= */
p {
  margin-bottom: 15px;
}

ul {
  margin-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* =======================================
   NAVIGATION
======================================= */
nav {
  background: #0d6efd;
  padding: 12px 20px;
  text-align: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

/* =======================================
   CARD / BOX
======================================= */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  margin-bottom: 25px;
}

/* =======================================
   BUTTONS
======================================= */
.btn {
  display: inline-block;
  padding: 14px 26px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #084298;
}

/* WhatsApp Button */
.btn-wa {
  background: #25D366;
}

.btn-wa:hover {
  background: #1da851;
}

/* =======================================
   FOOTER
======================================= */
footer {
  background: #0d6efd;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 14px;
}

/* =======================================
   FORMS
======================================= */
input, textarea, select {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

button {
  cursor: pointer;
}

/* =======================================
   RESPONSIVE (MOBILE)
======================================= */
@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  nav a {
    display: block;
    margin: 8px 0;
  }
}
