@charset "UTF-8";

/* ===== Root & Base ===== */
:root {
  --main-color: #820000;
  --hover-color: #660000;
  --bg-light: #f6f4f8;
  --text-color: #333;
  --font-main: system-ui, sans-serif;
}

body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background-color: #fff;
}

a {
  color: var(--main-color);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.hidden {
  display: none !important;
}

/* ===== Header ===== */
.main-header {
  background-color: #fefefe;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--main-color);
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--main-color);
}

.nav-cta {
  padding: 10px 18px;
  font-size: 0.9em;
}

/* ===== Mobile Nav ===== */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

@media (max-width: 700px) {
  .menu-icon {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
  }

  #menu-toggle:checked + .menu-icon + .main-nav {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 80px 20px 60px;
  background-color: #fff;
  color: var(--text-color);
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.hero-buttons a {
  display: inline-block;
  margin: 0 10px;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1em;
  transition: background 0.2s ease;
}

/* ===== Buttons ===== */
.cta-button,
.cta-secondary,
button {
  font-size: 1em;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 0.2s ease;
}

.cta-button {
  background-color: var(--main-color);
  color: white;
}

.cta-button:hover {
  background-color: var(--hover-color);
}

.cta-secondary {
  background: transparent;
  color: var(--main-color);
  border: 2px solid var(--main-color);
}

.cta-secondary:hover {
  background-color: var(--main-color);
  color: white;
}

/* ===== Footer ===== */
.main-footer {
  background-color: var(--bg-light);
  padding: 40px 20px;
  text-align: center;
  font-size: 0.95em;
  color: var(--text-color);
}

/* ===== Sections ===== */
.program-overview {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 60px auto 40px auto;
  padding: 0 20px;
  max-width: 1000px;
}

.program-overview h1 {
  text-align: center;
  margin-top: 40px; /* Add or increase this */
  margin-bottom: 10px;
  font-size: 2em;
  color: #820000;
}

.program-box {
  background-color: #f6f4f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  margin: 20px;
  flex: 1 1 280px;
  max-width: 300px;
  text-align: center;
}

.program-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--main-color);
}

.program-box p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
}

.about-roxana {
  max-width: 700px;
  margin: 80px auto 60px auto;
  padding: 0 20px;
  text-align: center;
}

.about-roxana h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: var(--main-color);
}

.about-roxana p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-color);
}

.quiz-section {
  background-color: #f9f7fb;
  padding: 80px 20px;
  text-align: center;
}

.quiz-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: var(--main-color);
}

.quiz-section p {
  font-size: 1.1em;
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--text-color);
}

.testimonials-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: var(--main-color);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial {
  background-color: #f6f4f8;
  border-radius: 8px;
  padding: 30px 20px;
  max-width: 300px;
  font-size: 1em;
  color: var(--text-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial span {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: var(--main-color);
}

.cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #fefefe;
}

.cta-section h2 {
  font-size: 2em;
  color: var(--main-color);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#mc_embed_signup {
  background: #fff;
  font: 14px Helvetica, Arial, sans-serif;
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

#mc_embed_signup h2 {
  color: #820000;
  text-align: center;
}

#mc_embed_signup label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

#mc_embed_signup input[type="text"],
#mc_embed_signup input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

#mc_embed_signup input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 10px;
}

#mc_embed_signup .button {
  background-color: #820000;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  cursor: pointer;
  width: 100%;
}
/* ===== Blog List Styling ===== */
.program-detail h1 {
  margin-top: 40px;
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #820000;
}

.program-detail p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.program-detail ul {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.program-detail ul li {
  background-color: #f9f7fb;
  margin-bottom: 12px;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease;
}

.program-detail ul li:hover {
  background-color: #f3edf4;
}

.program-detail ul li a {
  text-decoration: none;
  color: #820000;
  font-weight: bold;
  font-size: 1.1em;
  display: block;
}

.program-detail ul li a:hover {
  color: #660000;
}
.program-detail {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px; /* ✅ Add this if missing or increase slightly if it's already there */
  text-align: left;
}
.social-media {
  display: flex;
  gap: 32px; /* More spacing */
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 16px;
}

.social-media img {
  height: 32px;
  width: auto; /* Keeps logo proportions */
  transition: transform 0.2s ease;
}

.social-media a:hover img {
  transform: scale(1.2);
}

.cert-badges {
  margin: 60px auto;
  max-width: 1000px;
  padding: 20px;
  text-align: center;
}

.cert-badges h2 {
  font-size: 1.8rem;
  color: var(--main-color, #820000);
  margin-bottom: 30px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.badge-row img {
  height: 80px;
  max-width: 120px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.badge-row img:hover {
  transform: scale(1.05);
}

.about-roxana {
  text-align: center;
  padding: 60px 20px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.roxana-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.subscribed-message {
  color: #820000;  /* dark red or use #2c6b2e for dark green */
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  margin-top: 20px;
}

.comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  border-collapse: collapse;
  font-size: 1rem;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ccc;
  padding: 12px 16px;
  text-align: center;
}

.comparison-table th {
  background-color: #f9f9f9;
  font-weight: bold;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: bold;
}

.centered {
  text-align: center;
  margin-top: 30px;
}
