/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  font-size: 16px;
}

a {
  color: #0693e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #32373c;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container & Grid System */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-inner {
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-3 { width: 25%; padding: 0 15px; }
.col-4 { width: 33.333%; padding: 0 15px; }
.col-6 { width: 50%; padding: 0 15px; }
.col-9 { width: 75%; padding: 0 15px; }
.col-12 { width: 100%; padding: 0 15px; }

.col-sm-2 { width: 16.666%; padding: 0 15px; }
.col-sm-3 { width: 25%; padding: 0 15px; }
.col-sm-4 { width: 33.333%; padding: 0 15px; }
.col-sm-6 { width: 50%; padding: 0 15px; }

.col-md-2 { width: 16.666%; padding: 0 15px; }
.col-md-3 { width: 25%; padding: 0 15px; }
.col-md-4 { width: 33.333%; padding: 0 15px; }
.col-md-6 { width: 50%; padding: 0 15px; }

.col-lg-6 { width: 50%; padding: 0 15px; }

.col-xl-2 { width: 16.666%; padding: 0 15px; }

/* Responsive visibility classes */
.hidden-xs-down { display: block; }
.hidden-sm-up { display: none; }
.hidden-md-down { display: none; }
.hidden-lg-up { display: block; }

@media (min-width: 576px) {
  .hidden-sm-up { display: block; }
}

@media (min-width: 768px) {
  .hidden-md-down { display: block; }
  .hidden-xs-down { display: none; }
}

@media (min-width: 992px) {
  .hidden-lg-up { display: none; }
}

/* Header Styles */
.top_header {
  padding: 1.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.site_title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.site-logo {
  width: 70px;
  height: auto;
}

/* Navigation Desktop */
.global_nav {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2em;
  margin: 0;
  padding: 0;
}

.global_nav li {
  position: relative;
}

.global_nav a {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  padding: 0.5em 0;
  display: block;
}

.global_nav a:hover {
  color: #0693e3;
}

.nav-parent-container {
  position: relative;
}

.nav-child-container {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  list-style: none;
  padding: 0.5em 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-parent-container:hover .nav-child-container {
  opacity: 1;
  visibility: visible;
}

.nav-child-container li {
  padding: 0;
}

.nav-child-container a {
  padding: 0.5em 1.5em;
  font-size: 14px;
}

/* Mobile Menu */
.menu_btn {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.5em 0;
  color: #000000;
}

.smMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

.pushy {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: #ffffff;
  overflow-y: auto;
  z-index: 10000;
  transition: left 0.3s ease;
  pointer-events: auto;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.smMenu.active .pushy {
  left: 0;
}

.close_btn {
  padding: 1.5em;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

.homeBtn {
  padding: 1em 1.5em;
  border-bottom: 1px solid #f0f0f0;
}

.homeBtn a {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.smNav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.smNav li {
  border-bottom: 1px solid #f0f0f0;
}

.smNav a {
  display: block;
  padding: 1em 1.5em;
  color: #000000;
  font-size: 16px;
}

.smNav a:hover {
  background: #f8f8f8;
}

.site-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}

.smMenu.active .site-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.touch-hover:hover {
  opacity: 0.7;
}

/* Hero Banner - typo preserved: bunner */
.top-bunner {
  width: 100%;
  margin: 2em 0;
  position: relative;
}

.top-bunner img {
  width: 100%;
  height: auto;
  display: block;
}

.top-bunner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

/* Main Content - typo preserved: contena */
.top-contena {
  padding: 3em 0;
}

.top-item {
  margin-bottom: 3em;
}

.top-item__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 1.5em;
  color: #000000;
}

/* Intro Section */
.intro-sect {
  text-align: center;
  padding: 2em 0;
}

.main-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1em;
  color: #000000;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #32373c;
  margin-bottom: 1.5em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.ftco-section {
  padding: 4em 0;
  position: relative;
}

.ftco-services .media.block-6 {
  display: block;
  width: 100%;
  padding: 2em 1em;
}

.ftco-services .media.block-6 .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.5em;
  background: #0693e3;
  border: 3px solid #abb8c3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftco-services .media.block-6 .icon span {
  color: #fff;
  font-size: 50px;
}

.ftco-services .media.block-6 .media-body {
  text-align: center;
}

.ftco-services .media.block-6 .media-body h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0.75em;
  color: #000000;
}

.ftco-services .media.block-6 .media-body p {
  color: #32373c;
  line-height: 1.7;
}

.d-flex {
  display: flex;
}

.align-self-stretch {
  align-self: stretch;
}

.ftco-animate {
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Why Podcasts Section */
.why-podcasts-section {
  padding: 3em 0;
}

.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2em;
  color: #000000;
}

.content-grid {
  margin-top: 2em;
}

.benefit-item {
  margin-bottom: 2.5em;
  padding: 1.5em;
  background: #f8f8f8;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
  font-size: 36px;
  color: #0693e3;
  margin-bottom: 0.75em;
}

.benefit-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #000000;
}

.benefit-item p {
  color: #32373c;
  line-height: 1.7;
}

/* Podcasts Grid Section */
.podcasts-section {
  padding: 4em 0;
  background: #f8f8f8;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}

.section-main-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 2.5em;
}

.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.podcast-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.podcast-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.podcast-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #ffffff;
}

.podcast-content {
  padding: 1.5em;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.podcast-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #000000;
  line-height: 1.4;
}

.podcast-platform {
  font-size: 13px;
  color: #abb8c3;
  text-transform: uppercase;
  margin-bottom: 0.75em;
  font-weight: 600;
}

.podcast-description {
  color: #32373c;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 1.5em;
  flex-grow: 1;
}

.podcast-link {
  display: inline-block;
  background: #0693e3;
  color: #ffffff;
  padding: 0.75em 1.5em;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s ease;
}

.podcast-link:hover {
  background: #32373c;
  color: #ffffff;
}

/* Topics Section */
.topics-section {
  padding: 4em 0;
}

.topics-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #32373c;
  margin-bottom: 3em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.topics-grid {
  margin-top: 2em;
}

.topic-column {
  margin-bottom: 2em;
}

.topic-card {
  padding: 2em;
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.topic-card:hover {
  border-color: #0693e3;
  transform: translateY(-5px);
}

.topic-icon {
  font-size: 48px;
  color: #0693e3;
  margin-bottom: 1em;
}

.topic-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.75em;
  color: #000000;
}

.topic-card p {
  color: #32373c;
  line-height: 1.6;
  font-size: 14px;
}

/* CTA Section */
.black-bg {
  background: #020c26 !important;
}

.section-padding {
  padding: 5em 0;
}

.text-center {
  text-align: center;
}

.cta-section {
  margin-left: -15px;
  margin-right: -15px;
}

.container-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.offset-xl-2 {
  margin-left: 16.666%;
}

.section_title h3 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 1em;
}

.section_title p {
  font-size: 18px;
  color: #D5D5D5;
  line-height: 1.7;
  margin-bottom: 2.5em;
  font-weight: 400;
}

.subscription-form-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
}

.subscription-form-placeholder input[type="email"] {
  width: 100%;
  max-width: 400px;
  padding: 1em 1.5em;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  background: #ffffff;
}

.boxed-btn3 {
  background: #0693e3;
  color: #fff;
  display: inline-block;
  padding: 1em 2.5em;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid transparent;
  text-align: center;
  text-transform: capitalize;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.boxed-btn3:hover {
  background: transparent;
  color: #0693e3 !important;
  border: 2px solid #0693e3;
}

/* How It Works Section */
.how-works-section {
  padding: 4em 0;
  background: #f8f8f8;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}

.how-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.steps-container {
  margin-top: 3em;
}

.step-item {
  text-align: center;
  padding: 2em 1em;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #0693e3;
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5em;
  border: 4px solid #abb8c3;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0.75em;
  color: #000000;
}

.step-description {
  color: #32373c;
  line-height: 1.7;
  font-size: 15px;
}

.disclaimer-note {
  margin-top: 3em;
  padding: 1.5em;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 5px;
}

.disclaimer-note p {
  margin: 0;
  color: #856404;
  line-height: 1.7;
}

.disclaimer-note i {
  margin-right: 0.5em;
}

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 4em 0 2em;
  margin-top: 4em;
}

.footer-content {
  margin-bottom: 2em;
}

.footer-col {
  margin-bottom: 2em;
}

.footer-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1.5em;
  color: #ffffff;
}

.footer-text {
  color: #abb8c3;
  line-height: 1.7;
  margin-bottom: 1.5em;
}

.social-links {
  display: flex;
  gap: 1em;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #32373c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #0693e3;
  color: #ffffff;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.75em;
}

.footer-menu a {
  color: #abb8c3;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #ffffff;
}

.contact-info {
  margin-top: 1.5em;
}

.contact-info p {
  color: #abb8c3;
  font-size: 14px;
  margin-bottom: 0.75em;
  line-height: 1.6;
}

.contact-info i {
  margin-right: 0.5em;
  color: #0693e3;
}

.footer-bottom {
  border-top: 1px solid #32373c;
  padding-top: 2em;
  text-align: center;
}

.copyright {
  color: #abb8c3;
  font-size: 14px;
  margin: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 1.5em;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #abb8c3;
}

.cookie-text i {
  margin-right: 0.5em;
  color: #ffc107;
}

.cookie-text a {
  color: #0693e3;
  text-decoration: underline;
}

.cookie-btn {
  background: #0693e3;
  color: #ffffff;
  border: none;
  padding: 0.75em 2em;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-btn:hover {
  background: #32373c;
}

.cookie-btn-decline {
  background: transparent;
  border: 2px solid #abb8c3;
  color: #abb8c3;
}

.cookie-btn-decline:hover {
  background: #abb8c3;
  color: #1a1a1a;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .main-heading {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section_title h3 {
    font-size: 32px;
  }
  
  .podcasts-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5em;
  }
  
  .col-md-4,
  .col-md-6 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .col-3,
  .col-6,
  .col-9 {
    width: 100%;
  }
  
  .main-heading {
    font-size: 26px;
  }
  
  .intro-text {
    font-size: 16px;
  }
  
  .podcasts-grid {
    grid-template-columns: 1fr;
  }
  
  .subscription-form-placeholder {
    flex-direction: column;
  }
  
  .subscription-form-placeholder input[type="email"] {
    max-width: 100%;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .offset-xl-2 {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-6 {
    width: 100%;
  }
  
  .ftco-section {
    padding: 2em 0;
  }
  
  .section-padding {
    padding: 3em 0;
  }
}

/* ===== PODCAST DETAIL PAGE STYLES ===== */
.podcast-detail-page {
  background: #f8f8f8;
}

.podcast-detail-wrapper {
  background: #ffffff;
  border-radius: 8px;
  padding: 3em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.loading-state,
.error-state {
  text-align: center;
  padding: 4em 2em;
}

.loading-state i {
  font-size: 48px;
  color: #0693e3;
  margin-bottom: 1em;
}

.error-state i {
  font-size: 64px;
  color: #cf2e2e;
  margin-bottom: 1em;
}

.error-state h2 {
  font-size: 28px;
  margin-bottom: 1em;
  color: #000000;
}

.podcast-detail-content {
  max-width: 900px;
  margin: 0 auto;
}

.podcast-detail-header {
  display: flex;
  align-items: center;
  gap: 2em;
  margin-bottom: 3em;
  padding-bottom: 2em;
  border-bottom: 2px solid #f0f0f0;
}

.podcast-detail-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #ffffff;
  flex-shrink: 0;
}

.podcast-detail-meta {
  flex: 1;
}

.podcast-detail-platform {
  font-size: 13px;
  color: #abb8c3;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5em;
  display: block;
}

.podcast-detail-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  margin: 0;
}

.podcast-detail-body {
  padding: 0;
}

.podcast-detail-section {
  margin-bottom: 3em;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1em;
  color: #000000;
}

.podcast-detail-description {
  font-size: 18px;
  line-height: 1.8;
  color: #32373c;
}

.platform-info {
  font-size: 18px;
  margin-bottom: 0.5em;
  color: #000000;
}

.platform-description {
  color: #32373c;
  line-height: 1.7;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.benefit-item-inline {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  padding: 1em;
  background: #f8f8f8;
  border-radius: 6px;
}

.benefit-item-inline i {
  color: #0693e3;
  font-size: 20px;
  margin-top: 0.2em;
  flex-shrink: 0;
}

.benefit-item-inline span {
  color: #32373c;
  line-height: 1.6;
}

.podcast-cta-section {
  margin-top: 3em;
  text-align: center;
  padding: 2em;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
}

.podcast-cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #667eea;
  padding: 1em 3em;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.podcast-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: #667eea;
}

.podcast-cta-btn i {
  margin-right: 0.5em;
}

.back-link-container {
  text-align: center;
  margin: 2em 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #0693e3;
  font-weight: 600;
  padding: 0.75em 1.5em;
  border: 2px solid #0693e3;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.back-link:hover {
  background: #0693e3;
  color: #ffffff;
}

.disclaimer-section {
  margin-top: 3em;
}

.disclaimer-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5em;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  gap: 1em;
}

.disclaimer-box i {
  color: #856404;
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 0.2em;
}

.disclaimer-box p {
  color: #856404;
  line-height: 1.7;
  margin: 0;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-page-content {
  background: #ffffff;
}

.page-header-section {
  text-align: center;
  padding: 3em 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 0 -15px 3em -15px;
  color: #ffffff;
}

.page-main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #ffffff;
}

.page-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto;
}

.content-section-wrapper {
  padding: 3em 0;
}

.content-section-wrapper.bg-light {
  background: #f8f8f8;
  margin: 0 -15px;
  padding-left: 15px;
  padding-right: 15px;
}

.content-section-wrapper.bg-dark {
  background: #1a1a1a;
  color: #ffffff;
  margin: 0 -15px;
  padding-left: 15px;
  padding-right: 15px;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1.5em;
  color: #000000;
}

.section-heading.text-white {
  color: #ffffff;
}

.text-content {
  font-size: 17px;
  line-height: 1.8;
  color: #32373c;
  margin-bottom: 1.5em;
}

.text-light-gray {
  color: #abb8c3 !important;
}

.max-width-800 {
  max-width: 800px;
}

.max-width-900 {
  max-width: 900px;
}

.feature-box {
  padding: 2.5em;
  border-radius: 12px;
  text-align: center;
}

.feature-box.blue-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-icon-large {
  font-size: 64px;
  color: #ffffff;
  margin-bottom: 1em;
}

.feature-title-white {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75em;
}

.feature-text-white {
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  font-size: 16px;
}

.vision-grid {
  margin-top: 2.5em;
}

.vision-item {
  margin-bottom: 2em;
}

.vision-card {
  background: #ffffff;
  padding: 2.5em;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.vision-icon {
  font-size: 48px;
  color: #0693e3;
  margin-bottom: 1em;
}

.vision-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.75em;
  color: #000000;
}

.vision-description {
  color: #32373c;
  line-height: 1.7;
  font-size: 15px;
}

.values-container {
  margin-top: 2em;
}

.value-col {
  margin-bottom: 2em;
}

.value-item {
  display: flex;
  gap: 1.5em;
  align-items: flex-start;
  padding: 1.5em;
  background: #f8f8f8;
  border-radius: 8px;
  height: 100%;
}

.value-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon-wrapper i {
  font-size: 28px;
  color: #ffffff;
}

.value-content {
  flex: 1;
}

.value-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #000000;
}

.value-text {
  color: #32373c;
  line-height: 1.7;
}

.what-we-do-grid {
  margin-top: 2.5em;
}

.what-card {
  background: rgba(255,255,255,0.05);
  padding: 2em;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.what-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: #0693e3;
}

.what-number {
  font-size: 36px;
  font-weight: 700;
  color: #0693e3;
  margin-bottom: 0.75em;
}

.what-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75em;
}

.what-text {
  color: #abb8c3;
  line-height: 1.6;
  font-size: 14px;
}

.why-choose-container {
  margin-top: 2em;
}

.why-item-left,
.why-item-right {
  display: flex;
  gap: 1.5em;
  align-items: center;
  padding: 2em;
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 2em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.why-item-left:hover,
.why-item-right:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.why-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon-box i {
  font-size: 32px;
  color: #ffffff;
}

.why-text-box {
  flex: 1;
}

.why-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #000000;
}

.why-description {
  color: #32373c;
  line-height: 1.7;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-page-content {
  background: #f8f8f8;
}

.contact-main-row {
  margin-top: 2em;
}

.contact-form-wrapper,
.contact-info-wrapper {
  background: #ffffff;
  padding: 2.5em;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  height: 100%;
}

.form-heading,
.info-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1em;
  color: #000000;
}

.form-description,
.info-description {
  color: #32373c;
  line-height: 1.7;
  margin-bottom: 2em;
}

.contact-form {
  margin-top: 1.5em;
}

.form-group {
  margin-bottom: 1.5em;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #000000;
  font-size: 15px;
}

.form-label i {
  color: #0693e3;
  margin-right: 0.5em;
}

.form-control {
  width: 100%;
  padding: 0.875em 1.25em;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: #0693e3;
  box-shadow: 0 0 0 3px rgba(6, 147, 227, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit-btn {
  width: 100%;
  padding: 1em 2em;
  background: #0693e3;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.form-submit-btn:hover {
  background: #32373c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.form-messages {
  margin-top: 1.5em;
  padding: 1em;
  border-radius: 6px;
  display: none;
}

.form-messages.error {
  background: #fee;
  color: #c33;
  border: 1px solid #fcc;
  display: block;
}

.form-messages.success {
  background: #efe;
  color: #3c3;
  border: 1px solid #cfc;
  display: block;
}

.form-messages.loading {
  background: #eef;
  color: #0693e3;
  border: 1px solid #ccf;
  display: block;
}

.contact-info-items {
  margin-top: 2em;
}

.contact-info-item {
  display: flex;
  gap: 1.5em;
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon-box i {
  font-size: 28px;
  color: #ffffff;
}

.info-text-box {
  flex: 1;
}

.info-item-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #000000;
}

.info-item-text {
  color: #32373c;
  line-height: 1.7;
  margin: 0;
}

.info-item-text a {
  color: #0693e3;
  font-weight: 600;
}

.info-item-text a:hover {
  text-decoration: underline;
}

.info-item-subtext {
  color: #abb8c3;
  font-size: 14px;
  margin-top: 0.25em;
}

.social-connect-section {
  margin-top: 2.5em;
  padding-top: 2em;
  border-top: 2px solid #f0f0f0;
}

.social-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1em;
  color: #000000;
}

.social-icons-large {
  display: flex;
  gap: 1em;
}

.social-icon-lg {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  transition: all 0.3s ease;
}

.social-icon-lg:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  color: #ffffff;
}

.faq-section-wrapper {
  background: #f8f8f8;
  padding: 3em 2em;
  border-radius: 12px;
  margin-top: 3em;
}

.faq-grid {
  margin-top: 2em;
}

.faq-item {
  background: #ffffff;
  padding: 2em;
  border-radius: 8px;
  margin-bottom: 1.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75em;
  display: flex;
  align-items: center;
  gap: 0.75em;
}

.faq-question i {
  color: #0693e3;
  font-size: 20px;
}

.faq-answer {
  color: #32373c;
  line-height: 1.7;
  margin: 0;
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-page {
  background: #f8f8f8;
}

.legal-content {
  background: #f8f8f8;
  padding: 3em 0;
}

.legal-document {
  background: #ffffff;
  padding: 3em;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 0 auto;
}

.legal-title {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

.legal-updated {
  color: #abb8c3;
  font-style: italic;
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 2px solid #f0f0f0;
}

.legal-section {
  margin-bottom: 3em;
}

.legal-heading {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1em;
  margin-top: 1.5em;
}

.legal-subheading {
  font-size: 22px;
  font-weight: 600;
  color: #32373c;
  margin-bottom: 0.75em;
  margin-top: 1.25em;
}

.legal-text {
  font-size: 16px;
  line-height: 1.8;
  color: #32373c;
  margin-bottom: 1em;
}

.legal-list {
  margin: 1em 0 1.5em 2em;
  list-style: disc;
}

.legal-list li {
  margin-bottom: 0.75em;
  line-height: 1.7;
  color: #32373c;
}

.legal-list li strong {
  color: #000000;
  font-weight: 600;
}

.legal-document a {
  color: #0693e3;
  font-weight: 600;
  text-decoration: underline;
}

.legal-document a:hover {
  color: #32373c;
}

.legal-final-note {
  text-align: center;
  font-size: 15px;
  color: #abb8c3;
  padding-top: 2em;
  border-top: 2px solid #f0f0f0;
}

/* ===== RESPONSIVE ADJUSTMENTS FOR NEW PAGES ===== */
@media (max-width: 991px) {
  .podcast-detail-header {
    flex-direction: column;
    text-align: center;
  }
  
  .podcast-detail-icon {
    width: 100px;
    height: 100px;
    font-size: 56px;
  }
  
  .podcast-detail-title {
    font-size: 28px;
  }
  
  .page-main-title {
    font-size: 36px;
  }
  
  .legal-title {
    font-size: 32px;
  }
  
  .legal-document {
    padding: 2em;
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    margin-bottom: 2em;
  }
  
  .why-item-left,
  .why-item-right {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .podcast-detail-wrapper {
    padding: 2em 1.5em;
  }
  
  .podcast-detail-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 20px;
  }
  
  .page-header-section {
    padding: 2em 1em;
  }
  
  .page-main-title {
    font-size: 28px;
  }
  
  .page-subtitle {
    font-size: 16px;
  }
  
  .legal-document {
    padding: 1.5em;
  }
  
  .legal-title {
    font-size: 26px;
  }
  
  .legal-heading {
    font-size: 22px;
  }
  
  .legal-subheading {
    font-size: 18px;
  }
  
  .social-icons-large {
    justify-content: center;
  }
  
  .faq-section-wrapper {
    padding: 2em 1em;
  }
}