/* Base styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #000;
}

header {
  background: #000;
  padding: 1rem 2rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.sticky-header {
  position: sticky;
  top: 0;
  background: #000;
  padding: 1rem 2rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000; /* makes sure it stays above other elements */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* optional for a shadow effect */
}

h1, h2, p {
  margin: 0;
  padding: 0;
  font-weight: bold;
}

/* Hero section */
.coh-container.ssa-component.coh-ce-cpt_wpp_hero_trial_training-c9fe6181 {
  background-image: url('/sites/g/files/tbchtk381/files/styles/mobile_resize_width_only_600xauto_webp/public/2025-01/fitness-first-kurzhantel-hero.jpg.webp?itok=-cCCzboX');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.coh-container.coh-ce-cpt_wpp_hero_trial_training-9f115a20 {
  margin-top: 20px;
}

a.coh-style-link-red-bg-white-color {
  background-color: #e30613;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.3s;
}

a.coh-style-link-red-bg-white-color:hover {
  background-color: #b0040f;
}

a.coh-style-cta-transparent-bg-white-color-white-border {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 22px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  margin-left: 10px;
  transition: background-color 0.3s, color 0.3s;
}

a.coh-style-cta-transparent-bg-white-color-white-border:hover {
  background-color: #fff;
  color: #e30613;
}

/* Accordion styles */
.coh-accordion-tabs {
  margin-top: 60px;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.coh-accordion-tabs-nav li {
  list-style: none;
}

.coh-accordion-tabs-nav a {
  display: block;
  padding: 15px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  transition: background 0.3s;
}

.coh-accordion-tabs-nav a:hover {
  background-color: #eee;
}

.coh-accordion-title {
  cursor: pointer;
  background: #fff;
  padding: 15px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

.coh-accordion-tabs-content {
  padding: 15px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  display: none;
}

.coh-accordion-tabs-content p,
.coh-accordion-tabs-content ul {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.coh-wysiwyg ul {
  padding-left: 20px;
}

.coh-wysiwyg li {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .coh-accordion-tabs {
    padding: 15px;
  }

.coh-accordion-title,
.coh-accordion-tabs-content {
  font-size: 14px;
}


.accordion-button {
font-weight: bold;
}


/* Light grey background when accordion is expanded (active) */
.accordion-button:not(.collapsed) {
  background-color: #f1f1f1; /* light grey */
  color: inherit; /* optional: keep text color unchanged */
}


.accordion-button::after {
  filter: brightness(0.5); /* darken the arrow a bit */
}

  

  /* Fitness First style section */

.fitness-first-section {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 40px;
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    align: center;
}

.fitness-first-section h1 {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 60px 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 1.3;
}

.checkmark {
    color: #e53e3e;
    font-weight: bold;
    font-size: 20px;
    margin-right: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.closing-text {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.3;
}

.cta-button {
    background-color: #09ba2d;
    color: white;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c53030;
}

@media (max-width: 768px) {
    .fitness-first-section {
        padding: 40px 20px;
    }
    
    .fitness-first-section h1 {
        font-size: 36px;
    }
    
    .features-list li {
        font-size: 20px;
    }
    
    .closing-text {
        font-size: 20px;
    }
}




