/* ===== GLOBAL ===== */
body {
  font-family: 'Hubot Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
}

/* ===== HERO SECTION ===== */
.conduct-hero {
  position: relative;
  min-height: 60vh;
  background: url('../img/conduct/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.conduct-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(232,64,42,0.55),
    rgba(167,0,0,0.70)
  );
}

.conduct-hero .hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.conduct-hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
}

.conduct-hero p {
  font-size: 20px;
  opacity: 0.95;
}

/* ===== SECTIONS ===== */
.conduct-intro-section {
  padding: 100px 0;
  background: white;
}

.core-rules-section {
  padding: 100px 0;
  background: #F7F6EC;
}

.authority-section {
  padding: 100px 0;
  background: white;
}

.guidelines-section {
  padding: 100px 0;
  background: #F7F6EC;
}

.consequences-section {
  padding: 100px 0;
  background: white;
}

/* ===== LABELS ===== */
.section-label {
  display: inline-block;
  background: rgba(232,64,42,0.1);
  color: #E8402A;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  border: 1px solid rgba(232,64,42,0.2);
}

.conduct-content h2,
.authority-content h2,
.guidelines-section h2,
.consequences-card h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 20px;
}

.intro-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
}

.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #000000;
  max-width: 700px;
  margin: 15px auto 0;
}

/* ===== IMAGES ===== */
.conduct-image img,
.authority-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  width: 100%;
}

/* ===== RULE CARDS ===== */
.rule-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #E8402A;
  display: flex;
  flex-direction: column;
}

.rule-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.rule-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #E8402A, #F08C1C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  flex-shrink: 0;
}

.rule-icon i {
  font-size: 32px;
  color: white;
}

.rule-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000000;
}

.rule-highlight {
  display: inline-block;
  background: rgba(232,64,42,0.1);
  color: #E8402A;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.rule-card > p {
  font-size: 15px;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.7;
}

.rule-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rule-card ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
  color: #000000;
}

.rule-card ul li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #E8402A;
  font-size: 12px;
}

/* ===== AUTHORITY SECTION ===== */
.authority-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 40px;
}

.authority-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.authority-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.authority-number {
  width: 60px;
  height: 60px;
  background: #E8402A;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.authority-item h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000000;
}

.authority-item p {
  font-size: 15px;
  color: #000000;
  margin: 0;
  line-height: 1.6;
}

/* ===== GUIDELINE BOXES ===== */
.guideline-box {
  background: white;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.guideline-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.guideline-box i {
  font-size: 42px;
  color: #E8402A;
  margin-bottom: 20px;
}

.guideline-box h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000000;
}

.guideline-box p {
  font-size: 14px;
  color: #000000;
  margin: 0;
  line-height: 1.6;
}

/* ===== CONSEQUENCES CARD ===== */
.consequences-card {
  background: #F7F6EC;
  padding: 50px;
  border-radius: 20px;
  border: 2px solid #E8402A;
}

.consequences-card h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.consequences-card > p {
  font-size: 17px;
  color: #000000;
  margin-bottom: 40px;
}

.consequence-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.consequence-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  padding: 25px;
  border-radius: 15px;
}

.consequence-level {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.level-1 {
  background: #10b981;
}

.level-2 {
  background: #f59e0b;
}

.level-3 {
  background: #f97316;
}

.level-4 {
  background: #ef4444;
}

.consequence-item h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000000;
}

.consequence-item p {
  font-size: 14px;
  color: #000000;
  margin: 0;
}

/* ===== CTA SECTION ===== */
.conduct-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000, #000000);
  color: white;
}

.conduct-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.conduct-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.conduct-cta .btn-dark-primary {
  background: #E8402A;
  color: white;
  padding: 16px 35px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.conduct-cta .btn-dark-primary:hover {
  background: #A70000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232,64,42,0.4);
}

.conduct-cta .btn-outline-light {
  padding: 16px 35px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.8);
  color: white;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}

.conduct-cta .btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .conduct-hero h1 {
    font-size: 38px;
  }

  .conduct-content h2,
  .authority-content h2,
  .guidelines-section h2,
  .conduct-cta h2 {
    font-size: 32px;
  }

  .consequences-card h3 {
    font-size: 28px;
  }

  .consequences-card {
    padding: 35px 25px;
  }

  .conduct-intro-section,
  .core-rules-section,
  .authority-section,
  .guidelines-section,
  .consequences-section,
  .conduct-cta {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  .conduct-hero h1 {
    font-size: 32px;
  }

  .conduct-hero p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .consequence-item {
    flex-direction: column;
    gap: 15px;
  }

  .authority-item {
    flex-direction: column;
    gap: 15px;
  }
}
