/* ================= GENERAL ================= */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f8f9fb;
    color: #333;
    line-height: 1.8;
}

/* ================= HEADER ================= */
.subpage-header {
    background: #ffffff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.subpage-header h1 {
    font-size: 20px;
    color: #111;
}

.back-home {
    text-decoration: none;
    padding: 8px 18px;
    background: linear-gradient(45deg, #c9a227, #f5d76e);
    color: #111;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.back-home:hover {
    transform: scale(1.05);
}

/* ================= HERO ================= */
.hero-small {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-small::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
}

/* ================= CONTENT SECTION ================= */
.content-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

.content-section h2 {
    margin-top: 50px;
    font-size: 28px;
    color: #111;
    position: relative;
}

.content-section h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #c9a227;
    display: block;
    margin-top: 8px;
}

.content-section p {
    margin-top: 15px;
    color: #555;
    font-size: 16px;
}

.content-section ul {
    margin-top: 15px;
    padding-left: 20px;
}

.content-section li {
    margin-bottom: 8px;
}

/* ================= CTA BOX ================= */
.cta-box {
    margin-top: 70px;
    padding: 40px;
    background: linear-gradient(45deg, #111, #1a1a1a);
    color: #fff;
    border-radius: 15px;
    text-align: center;
}

.cta-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: linear-gradient(45deg, #c9a227, #f5d76e);
    color: #111;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* ================= FOOTER ================= */
.subpage-footer {
    background: #ffffff;
    padding: 25px;
    text-align: center;
    margin-top: 80px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

/* ================= GENERAL RESET ================= */
* {
  margin: 0; padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  background: #f8f9fb;
  color: #333;
  line-height: 1.8;
}

/* ================= HEADER ================= */
.subpage-header {
  background: #ffffff;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.subpage-header h1 { font-size: 22px; color: #111; }
.back-home {
  text-decoration: none;
  padding: 8px 20px;
  background: linear-gradient(45deg,#c9a227,#f5d76e);
  color: #111;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}
.back-home:hover { transform: scale(1.05); }

/* ================= HERO PARALLAX ================= */
.hero-small {
  height: 70vh;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-small::after {
  content:""; position:absolute; inset:0;
  background: rgba(0,0,0,0.35);
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: #ffd700;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
}
.hero-content p {
  font-size: 20px;
  color: #fff;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}

/* ================= CONTENT ================= */
.content-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px 25px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,0,0,0.08);
}
.content-section h2 {
  font-size: 28px; margin-bottom: 20px; color: #111;
  position: relative;
}
.content-section h2::after {
  content:""; display:block; width:60px; height:3px; background:#c9a227; margin-top:8px;
}
.content-section p, .content-section li {
  font-size: 16px; margin-bottom: 15px; color:#555;
}
.content-section ul { padding-left:20px; margin-bottom:25px; }

/* ================= HIGHLIGHT CARDS ================= */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px; margin-top:30px;
}
.highlight-card {
  background: linear-gradient(135deg,#fdf6e3,#fff8e1);
  padding:20px;
  border-radius:15px;
  box-shadow:0 0 20px rgba(0,0,0,0.08);
  transition:0.3s;
}
.highlight-card h4 { color:#c9a227; margin-bottom:10px; }
.highlight-card p { color:#555; font-size:15px; }
.highlight-card:hover { transform: translateY(-5px); box-shadow:0 0 25px rgba(0,0,0,0.15); }

/* ================= CTA BOX ================= */
.cta-box {
  margin-top:60px;
  padding:40px;
  background: linear-gradient(135deg,#c9a227,#f5d76e);
  color:#111;
  border-radius:20px;
  text-align:center;
}
.cta-box h3 { font-size:26px; margin-bottom:15px; }
.btn-primary {
  display:inline-block;
  margin-top:15px;
  padding:12px 30px;
  background:#111;
  color:#ffd700;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}
.btn-primary:hover { transform:scale(1.05); box-shadow:0 0 25px rgba(0,0,0,0.2); }

/* ================= FOOTER ================= */
.subpage-footer {
  background:#ffffff;
  padding:25px;
  text-align:center;
  margin-top:60px;
  box-shadow:0 -2px 10px rgba(0,0,0,0.08);
}
.subpage-footer .back-home { display:inline-block; margin-top:15px; }

/* ================= IMAGES ================= */
img { max-width:100%; border-radius:12px; box-shadow:0 0 25px rgba(0,0,0,0.05); transition:0.3s; }
img:hover { transform:scale(1.05); box-shadow:0 0 35px rgba(0,0,0,0.1); }

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .hero-content h1{ font-size:32px; }
  .hero-content p{ font-size:16px; }
  .content-section{ padding:25px 15px; }
  .highlight-card h4{ font-size:18px; }
  .cta-box h3{ font-size:20px; }
}
