/* ============================= */
/* Reset and Base Styling */
/* ============================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* ============================= */
/* Header Styling */
/* ============================= */
.main-header {
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.left-section {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  margin-right: 10px;
}

.channel-name {
  font-size: 18px;
  font-weight: bold;
}

.right-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.nav-link {
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 6px 10px;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ff9900;
}

/* ============================= */
/* Section: Contact */
/* ============================= */
.section-contact {
  margin-top: 30px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
  color: #111;
}

.section-para {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

.section-para ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 15px;
}

.section-para li {
  margin-bottom: 10px;
}

.section-para a {
  color: #0077cc;
  text-decoration: none;
}

.section-para a:hover {
  text-decoration: underline;
}

/* ============================= */
/* Go Back */
/* ============================= */
.go-back-home {
    text-align: center;
    margin: 40px 0;
}

.go-back-home a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.2s ease;
}

.go-back-home a:hover {
    color: #0056b3;
}


/* =============================
   Footer
============================= */
.footer{
  text-align:center; padding:24px var(--page-pad);
  background:#fafafa; border-top:1px solid #ddd; margin-top:40px;
}
.footer-icons{
  display:flex; justify-content:center; align-items:center;
  gap:18px; margin:8px 0 0;
}
.footer-icons a{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px;
}
.footer-icons img{ width:24px; height:24px; }
.copyright{
  margin-top: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.disclaimer{ margin-top:6px; font-size:10px; color:#666; }

/* ============================= */
/* Mobile Responsiveness */
/* ============================= */
@media (max-width: 600px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .right-section {
    justify-content: flex-start;
  }

  .section-title {
    font-size: 24px;
  }

  .section-para {
    font-size: 14px;
    padding: 0 10px;
  }
}
