/* ========== Global Reset ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rubik", sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.7;
}

/* ========== Container ========== */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}


/* Header */
.site-header {
  background: #fff;
  color: #fff;
  padding: 14px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.3px;
}

/* Navigation */
.main-nav {
  margin-left: auto;
  display: flex;
  gap: 18px;
  align-items: center;
}

.main-nav a {
  color: #f35626;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 8px;
}

.main-nav a:hover,
.main-nav a.active {
  text-decoration: underline;
}

/* ========== Header ========== */
.header {
  text-align: center;
  padding: 80px 20px 80px;
  background: linear-gradient(135deg, #f35626, #f17c3a);
  color: white;
  border-bottom: 3px solid #e64a19;
}

.header .logo h2 {
  font-family: "Sirin Stencil", cursive;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

/* ========== Main Content ========== */
.main-content section {
  margin-bottom: 40px;
}

.main-content h2 {
  color: #f35626;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.main-content p,
.main-content li {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 15px;
}

.main-content ul {
  padding-left: 20px;
  list-style: disc;
}

/* ========== CTA Box ========== */
.cta-box {
  background: #fff4f0;
  border-left: 5px solid #f35626;
  padding: 20px;
  margin-top: 50px;
  border-radius: 8px;
  text-align: center;
}

.cta-box h3 {
  color: #f35626;
  margin-bottom: 10px;
}

/* ========== Footer ========== */
.footer {
  background: #0d1b2a;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
}

.footer-nav a {
  color: #f35626;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  text-decoration: underline;
}
