:root {
  --brand: #ff7a21;
  --brand-2: #ffce55;
  --ink: #1a1a1a;
  --muted: #535353;
  --panel: #ffffff;
}

/* keep content centered ~1000px without affecting other pages */

.content-section .container.narrow {
  max-width: 1000px;
}

.content-section {
  background: #fafafa;
  color: var(--ink);
}

/* Section headers */

.section-head .eyebrow {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 999px;
  background: rgba(255,163,72,.12);
  color: var(--brand);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
}

.section-head .title {
  margin: .5rem 0 0;
}

.divider {
  width: 90px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  opacity: .9;
  margin-top: .8rem;
}

/* Bands to lightly separate rows */

.band {
  background: linear-gradient(180deg, #fff, #fff) padding-box, radial-gradient(120% 120% at 100% 0%, rgba(255,181,71,.18), transparent 60%) border-box;
  border: 1px solid transparent;
}

.band-soft {
  background: linear-gradient(180deg, #fff, #fff) padding-box, radial-gradient(120% 120% at 0% 0%, rgba(255,181,71,.16), transparent 60%) border-box;
  border: 1px solid transparent;
}

/* Feature cards */

.feature-list {
  counter-reset: item;
}

.start-1 {
  counter-reset: item 0;
}

.start-4 {
  counter-reset: item 3;
}

.start-8 {
  counter-reset: item 7;
}

.card-item {
  position: relative;
  border-radius: 20px;
  padding: 20px 18px 18px 64px;
  background: linear-gradient(#fff,#fff) padding-box, linear-gradient(135deg, rgba(255,122,33,.25), rgba(255,206,85,.25)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.card-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.card-item::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(255,163,72,.35);
}

.card-item h6 {
  margin: 0 0 .35rem;
  font-weight: 800;
}

.card-item p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* subtle typography tweaks */

.fw-bold {
  color: #222;
}

.audience-card-mobile {
}

svg {
}

.icon_number {
  font-size: 30px;
  margin-bottom: .25rem !important;
}

/* ===== Who Section - Force 2x2 Grid ===== */

.who-section {
  padding: 72px 0;
  background: #f6f8ff;
}

.who-section .container-narrow {
  max-width: 1200px;
  margin: 0 auto;
}

.who-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.who-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}

.who-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

.who-icon {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 0.75rem;
}

.who-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #222;
}

.who-desc {
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}

.sp-track {
}

.cta-btn {
  background-color: #FFC727;
  box-shadow: 0 6px 18px rgba(255, 174, 0, .35);
  border-radius: 999px;
}

.sc-text {
  top: 42% !important;
  width: 30px !important;
  height: 30px !important;
}

.hero-banner {
  background: url("your-background-image.png") no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  color: #111;
}

.hero-banner h2 {
  line-height: 1.3;
}

.hero-banner h4 {
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.6rem);
  color: #000;
}

.hero-banner p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

.cta-btn {
  background: linear-gradient(#f9e364, #eb9300);
  border-radius: 999px;
  border: none;
  font-weight: bolder;
  box-shadow: 0 6px 18px rgba(255, 174, 0, .35);
  font-size: 1.1rem;
}

.cta-btn:hover {
  background: #FFB800;
}

:root {
  --ink: #111;
  --muted: #4a4a4a;
  --brand: #ff7a21;
  --bg: #fafafa;
  --panel: #fff;
}

body {
  background: #fff;
  color: var(--ink);
}

.faq-wrap {
  background: radial-gradient(900px 500px at 50% -10%, rgba(255,199,39,.18), transparent 60%);
}

/* Focus the content in the middle (~1000px) */

.faq-container {
  max-width: 1000px;
  margin-inline: auto;
}

/* FAQ items */

.faq-item {
  background: var(--panel);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
  overflow: hidden;
  margin-bottom: 12px;
}

/* Question button */

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 48px 16px 18px;
  background: #fff;
  border: none;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  position: relative;
  cursor: pointer;
  display: block;
}

/* Arrow indicator */

.faq-question::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transition: transform .2s ease;
  transform-origin: 60% 60%;
}

.faq-item.active .faq-question::after, .faq-question[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}

/* Answer panel with smooth height animation driven by JS */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 18px 0 18px;
  background: #fff;
}

.faq-item.active .faq-answer {
  padding: 0 18px 16px 18px;
}

.faq-answer p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

/* Reset and Base Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'Source Han Sans CN', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
}

/* Header Hero Section */

.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.3;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(#f9e364, #eb9300);
  color: black;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: clamp(1rem, 0.9rem + 1vw, 1.4rem);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  margin: 20px 0;
  font-weight: bold;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
  text-decoration: none;
}

/* Section Styling */

.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  color: black;
}

/* Target Audience Cards */

/* Course Modules */

.course-modules {
  background: white;
  margin: 40px 0;
}

.module {
  margin-bottom: 30px;
  padding: 40px;
  border-radius: 15px;
}

.module-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a237e;
  margin-bottom: 20px;
}

.module-list {
  list-style: none;
  padding: 0;
}

.module-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.module-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

.module-list li strong {
  color: #1a237e;
}

/* Why Choose Us */

/* Testimonials */

.testimonials {
  background: #1a237e;
  color: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-placeholder {
  background: #333;
  height: 200px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ccc;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.5;
}

.testimonial-author {
  font-weight: bold;
  color: #ff6b35;
}

/* Teacher Profile */

.teacher-profile {
  display: grid;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

.teacher-info h3 {
  font-size: 2rem;
  color: #1a237e;
  margin-bottom: 20px;
}

.teacher-credentials {
  list-style: none;
  padding: 0;
}

.teacher-credentials li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: black;
  font-weight: bold;
}

.teacher-image {
  background: linear-gradient(135deg, #3949ab, #1a237e);
  height: 300px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

/* Pricing Section */

.pricing {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: white;
  text-align: center;
}

.price-highlight {
  font-size: 3rem;
  font-weight: bold;
  margin: 20px 0;
}

.price-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */

.faq {
  margin: 40px 0;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  background: #f8f9fa;
  padding: 20px;
  font-weight: bold;
  color: #eb9300;
  border-bottom: 2px solid #e3f2fd;
}

.faq-answer {
  padding: 20px;
  color: #666;
}

/* Special Utility Classes */

/* Footer */

/* Responsive Design */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .section-title {
  }
}

@media (max-width: 768px) {
  .teacher-profile {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .target-cards, .why-choose-cards, .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .price-highlight {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}

/* ===== Audience Section (reconstructed) ===== */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.audience-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Responsive: 2 columns on tablets, 1 on mobile */

@media (max-width: 1124px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .audience-img {
    height: 180px;
  }
}

/* ===== Audience Section (5 cards, centered grid fix) ===== */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  justify-content: center;
}

.audience-card {
  width: 100%;
  max-width: 300px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* ===== Audience Section (5 cards, centered rows) ===== */

.container-narrow {
  max-width: 1000px;
}

.audience-section .section-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  align-items: stretch;
}

.audience-card {
  width: 100%;
  max-width: 300px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  flex: 0 1 300px;
  max-width: 300px;
  width: 100%;
  height: 180px;
  max-height: 180px;
}

.audience-img {
  height: 230px;
  overflow: hidden;
}

.audience-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.audience-title {
  color: #e33d00;
  font-weight: 800;
  padding: 16px 18px 6px;
  line-height: 1.35;
  font-weight: bold;
}

.audience-desc {
  color: #555;
  height: 100px;
  padding: 0 18px 18px;
  line-height: 1.65;
  font-size: 20px;
}

@media (max-width: 1124px) {
  .container-narrow {
    max-width: 820px;
  }
}

@media (max-width: 1024px) {
  .audience-img {
    height: 230px;
  }
}

@media (max-width: 640px) {
  .container-narrow {
    max-width: 560px;
  }
}

/* ===== Improved Course Modules ===== */

.module-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 20px;
}

.module-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-size: 1.1rem;
}

/* ===== Improved Course Modules ===== */

.course-modules {
  margin: 60px auto;
  max-width: 1000px;
}

.course-modules .section-title {
  text-align: center;
  margin-bottom: 24px;
}

.module {
  border-radius: 15px;
  padding: 35px 40px;
  margin-bottom: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.module-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 18px;
}

.module-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.module-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  line-height: 1.65;
}

.module-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-size: 1.1rem;
  line-height: 1;
  top: 2px;
}

@media (max-width: 640px) {
  .module {
    padding: 24px 20px;
  }
}

@media (max-width: 640px) {
  .module-title {
    font-size: 1.3rem;
  }
}

/* ===== FAQ Accordion (Appended) ===== */

.faq-question {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f5f7ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  background: #fafafa;
  padding: 0 20px;
  border-radius: 0 0 8px 8px;
}

/* ===== Teacher Profile (Side by Side) ===== */

.teacher-profile {
  padding: 60px 0;
}

.teacher-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.teacher-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.teacher-info h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 20px;
}

.teacher-info .highlight {
  color: #ff6b35;
}

.teacher-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
}

.teacher-credentials li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.teacher-credentials li::before {
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Mobile: stack vertically */

@media (max-width: 768px) {
  .teacher-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .teacher-image img {
    margin: 0 auto 20px;
  }
}

@media (max-width: 768px) {
  .teacher-info h3 {
    font-size: 1.6rem;
  }
}

/* ===== Centered container ===== */

.sc-section {
  padding: 56px 0;
  background: #fff;
}

.sc-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.sc-title {
  text-align: center;
  font-weight: 800;
  margin: 0 0 18px;
}

/* ===== Core carousel ===== */

.sc-carousel {
  position: relative;
}

.sc-viewport {
  overflow: hidden;
}

.sc-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform .4s ease;
}

.sc-slide {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 992px) {
  .sc-slide {
    width: calc((100% - 24px)/2);
  }
}

/* ===== Video card style ===== */

.sc-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Media area */

.sc-ytwrap {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.sc-yt-frame, .sc-yt-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sc-yt-frame {
  border: 0;
  display: none;
}

.sc-yt-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
}

.sc-yt-overlay img {
  object-fit: cover;
}

.sc-yt-play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 0 22px 34px;
  border-color: transparent transparent transparent #ff3b3b;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
}

/* Quote area */

.sc-quote {
  padding: 14px 16px 16px;
}

.sc-quote p {
  margin: 0 0 6px;
  line-height: 1.6;
  font-size: 1.02rem;
  color: #0e0f12;
}

.sc-meta {
  color: #5a6475;
  font-size: .92rem;
}

/* ===== Nav: always below ===== */

.sc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.sc-arrow {
  background: #ffd36b;
  color: #000;
  border: 1px solid rgba(0,0,0,.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.sc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.sc-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #c4ccda;
  cursor: pointer;
}

.sc-dots button.active {
  background: #2e5cff;
}

/* CTA below */

.sc-cta {
  text-align: center;
  margin-top: 16px;
}

/* ===== Image carousel specifics ===== */

.sc-light .sc-slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.video-wrapper-small {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.video-wrapper-small iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Slightly smaller on mobile for better fit */

@media (max-width: 576px) {
  .video-wrapper-small {
    max-width: 100%;
  }
}

:root {
  --accent: #ff6a3d;
  --accent-soft: #ffe9d9;
  --ink: #1a1a1a;
}

/* Base */

body {
  background: #fff;
  color: var(--ink);
}

/* Keep the whole section focused in the middle (~1000px) */

.why.container {
  max-width: 1000px;
  margin-inline: auto;
}

/* Soft background glow (unchanged) */

.bg-glow {
  position: fixed;
  inset: -40vh 0 0 0;
  background: radial-gradient(60rem 30rem at 50% -10%, rgba(255,199,39,.25), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Headings */

.why-title {
  line-height: 1.3;
}

.why-sub {
  color: #515151;
}

.why-foot {
  color: #6b4b12;
  font-weight: 600;
}

/* Panel wrapper */

.why-wrap {
  background: #fff;
  border-radius: 24px;
}

/* Make column wrappers flex so cards can stretch equally */

.why-wrap .row > [class*="col"] {
  display: flex;
}

/* Card */

.feature-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background-color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
  height: 100%;
  min-height: 150px;
}

/* Slightly taller on larger screens for visual balance */

@media (min-width: 992px) {
  .feature-card {
    min-height: 170px;
  }
}

/* Content */

.feature-title {
  font-weight: 700;
  margin-bottom: .35rem;
}

.feature-desc {
  color: #444;
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.25rem);
  clamp(1rem, 0.95rem + 0.4vw, 1.25rem);: 1.65;
  margin: 0;
}

/* Icon block (kept on the right) */

.feature-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-left: 12px;
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
}

/* If you are using inline SVGs, keep them sized neatly */

.feature-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.footer-dark {
  padding: 50px 0;
  color: #f0f9ff;
  background-color: #282d32;
}

.footer-dark h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
}

.footer-dark ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-dark ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}

.footer-dark ul a:hover {
  opacity: 0.8;
}

@media (max-width:767px) {
  .footer-dark .item:not(.social) {
    text-align: center;
    padding-bottom: 20px;
  }
}

.footer-dark .item.text {
  margin-bottom: 36px;
}

@media (max-width:767px) {
  .footer-dark .item.text {
    margin-bottom: 0;
  }
}

.footer-dark .item.text p {
  opacity: 0.6;
  margin-bottom: 0;
}

.footer-dark .item.social {
  text-align: center;
}

@media (max-width:991px) {
  .footer-dark .item.social {
    text-align: center;
    margin-top: 20px;
  }
}

.footer-dark .item.social > a {
  font-size: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
  margin: 0 8px;
  color: #fff;
  opacity: 0.75;
}

.footer-dark .item.social > a:hover {
  opacity: 0.9;
}

.footer-dark .copyright {
  text-align: center;
  padding-top: 24px;
  opacity: 0.3;
  font-size: 13px;
  margin-bottom: 0;
}

* {
  /*box-sizing: inherit;*/
}

*:before, *:after {
  /*box-sizing: inherit;*/
}

