@import url('https://fonts.googleapis.com/css2?family=Gothic+A1:wght@400;700&display=swap');


/* Global Styles */
:root {
    --primary-color: #FF5722;
    --secondary-color: #999999;
    --accent-color: #FF5722;
    --text-color: #FFFFFF;
    --light-text: #999999;
    --background-color: #121212;
    --light-background: #1E1E1E;
    --border-color: #333333;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --danger-color: #F44336;
    --card-gradient: linear-gradient(135deg, #1E1E1E, #121212);
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    --strategicabm-orange: #FF5722;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* TODO - change font */
body {
/*     font-family: 'Inter', sans-serif; */
    font-family: 'Gothic A1', sans-serif;
    color: #000;
    line-height: 1.6;
    background-color: var(--background-color);
    background-color: #FFF;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #FF5722;
    color: white;
    border: 2px solid #FF5722;
}

.btn-primary:hover {
    background-color: transparent;
    color: #FF5722;
}

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.btn-secondary:hover {
    background-color: var(--light-background);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}
.self-serve-plans, section.faq {
  background-color: rgb(18, 18, 18)
}

/* Header Styles */
/* header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    background-color: white;
    top: 0;
    z-index: 100;
} */

@media (min-width: 769px) {
/*     header {
        position: sticky;
    } */
}

/* header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

/* .logo img {
    height: 40px;
} */

/* .strategicabm-logo {
    display: block;
    width: 180px;
    height: 30px;
    background: url('https://429918.fs1.hubspotusercontent-na1.net/hubfs/429918/Agency%20website%202021/images/interface/img-sprite.png') no-repeat;
    background-position: 0 -280px;
    margin-top: 5px;
} */

/* nav ul {
    display: flex;
    gap: 30px;
} */

/* nav ul li a {
    color: #333;
    font-weight: 500;
} */

/* nav ul li a.active {
    color: var(--primary-color);
}
 */

#sticky-booking-header h3 {
  margin: 0;
  font-size: 1.4rem; 
  font-weight: bold;

}
.booking-modal h2 {
  font-size: 2.25rem;
}
.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    background-color: #111;
}

.trusted-text {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    row-gap: 70px;
    margin: 0 auto;
    max-width: 1000px;
    padding: 20px 0 40px;
    align-items: start;
}

.company-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.company-logo img {
    max-height: 34px;
    max-width: 150px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.company-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .client-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        row-gap: 50px;
    }
}

/* Hero Section */
.hero-training {
  margin-top: 90px;
}
.hero-training {
    padding: 60px 40px;
    text-align: left;
    background-color: var(--background-color);
}

.hero-training .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-training h1 {
    font-size: 48px;
    font-weight: 800;
    font-size: 2.8rem; 
    color: #FFFFFF; 
    margin-bottom: 10px; 
    line-height: 1.2;
}
.hero-training p {
  font-size: 2.0rem; 
  color: #DDDDDD; 
  font-weight: 400;>
}

.segment-control {
    display: flex;
    background-color: #333333;
    border-radius: 30px;
    overflow: hidden;
}

.segment-btn {
    padding: 10px 20px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.segment-btn.active {
    background-color: #000;
    color: white;
}

/* Pricing Section */
.billing-toggle {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.toggle-label {
    font-size: 14px;
    color: #666;
    margin: 0 8px;
}

.toggle-label.active {
    color: white;
    font-weight: 500;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
}

input:checked + .slider {
    background-color: #000;
}

input:checked + .slider:before {
    transform: translateX(16px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.save-badge {
    background-color: #f2f2f2;
    color: #333;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 5px;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.pricing-card {
    background-color: #1F1F1F;
    color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    background: var(--card-gradient);
    color: white;
    border: 1px solid var(--strategicabm-orange);
}

.card-header {
    padding: 30px 30px 20px;
    border-bottom: none;
    background-color: transparent;
}

.pricing-card.featured .card-header {
    background: transparent;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
    color: #FFFFFF;
}

.description {
    color: #999999;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.pricing-card.featured .description {
    color: white;
    opacity: 0.9;
}

.orange-text {
    color: #FF5722;
}

.card-image-placeholder {
    height: 40px;
    background-color: #333;
    border-radius: 10px 10px 0 0;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.learn-more {
    color: #FF5722;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    text-align: left;
}

.pricing-footer {
    background-color: #333;
    padding: 15px 20px;
    border-radius: 0 0 10px 10px;
}

.info-tags {
    display: flex;
    gap: 10px;
}

.info-tags .tag {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.hidden {
    display: none;
}

.show-more-container {
    text-align: center;
    margin-top: 30px;
}

.btn-secondary {
    background-color: #333;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #555;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #FF5722;
    color: #FFFFFF;
    border-color: #FF5722;
}

.card-body {
    padding: 0 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.features {
    margin-bottom: 20px;
    flex-grow: 1;
    list-style-type: none;
    padding-left: 0;
}

.features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.sub-feature {
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--light-text);
}

.checkmark-sub {
    color: var(--light-text);
    margin-right: 8px;
    position: absolute;
    left: 20px;
}

.no-bullet {
    list-style: none;
    margin-top: -10px;
    margin-bottom: 15px;
    padding-left: 25px;
}

.checkmark {
    color: var(--strategicabm-orange);
    font-weight: bold;
    margin-right: 8px;
    position: absolute;
    left: 0;
}

/* Explicitly set checkmark color to orange for featured card */
.pricing-card.featured .checkmark {
    color: var(--strategicabm-orange);
}

/* Ensure consistent checkmark styling in credits section */
.pricing-card.featured .credits-subtitle + .features .checkmark {
    color: var(--strategicabm-orange);
}

.pricing-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--strategicabm-orange);
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
}

.price-note {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.pricing-card.featured .price-label,
.pricing-card.featured .price-amount,
.pricing-card.featured .price-note {
    color: white;
}

.btn-dark {
    background-color: var(--strategicabm-orange);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #333;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #f5f5f5;
}

.btn-light {
    background-color: var(--strategicabm-orange);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Trusted By Section */
.trustheader {
    padding: 20px 0;
    top: 0;
    background-color: white;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

@media (min-width: 769px) {
    .trustheader {
        position: sticky;
    }
}

.trusted-by {
    padding: 80px 0;
    background-color: var(--background-color);
    text-align: center;
/*     margin: 40px 0; */
}

.trusted-text {
    color: #777;
    font-size: 14px;
    margin-bottom: 30px;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    min-width: 150px;
}

.company-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.company-logo img {
    max-width: 100%;
    height: auto;
}

/* Enterprise Section */
.enterprise-section {
    padding: 60px 0;
}

.enterprise-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.enterprise-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* Enterprise Info Cards */
.enterprise-info-card {
    background: var(--card-gradient);
    border-radius: 8px;
    color: white;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--strategicabm-orange);
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.enterprise-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.enterprise-info-card p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.team-image {
    margin-top: auto;
    width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.enterprise-info-card blockquote {
    font-style: italic;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.implementation-features {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.implementation-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.arrow-icon {
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
    color: var(--strategicabm-orange);
}

.implementation-feature p {
    margin: 0;
    flex: 1;
}

/* Enterprise Plan */
.enterprise-card {
    display: flex;
    background: var(--card-gradient);
    color: white;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    min-height: 300px;
    border: 1px solid var(--strategicabm-orange);
}

.enterprise-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.enterprise-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.enterprise-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.9;
}

.enterprise-cta {
    align-self: flex-start;
    margin-top: auto;
}

.enterprise-features {
    display: flex;
    flex: 2;
    padding: 40px 20px;
    gap: 40px;
    justify-content: space-around;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.enterprise-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-dot {
    width: 14px;
    height: 14px;
    background-color: var(--strategicabm-orange);
    border-radius: 50%;
    margin-top: 4px;
}

.enterprise-feature p {
    font-size: 16px;
    margin: 0;
    flex: 1;
}

.enterprise-card ul {
    margin-top: 20px;
}

.enterprise-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.enterprise-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: white;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background-color: var(--light-background);
}

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

.story-card {
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.story-card h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-card blockquote {
    font-style: italic;
    margin: 20px 0;
}

.metrics {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.label {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    padding: 20px;
    border-radius: 10px;
    background-color: var(--light-background);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f0f7ff;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section-ribbon::after {
    clip-path: polygon(100% 0, 100% 100%, 0% 100%);
}

.cta-section-ribbon-flipped::before, .cta-section-ribbon-flipped::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
}

.cta-section-ribbon-flipped::before {
    clip-path: polygon(100% 0, 0% 0, 0% 100%);
}

.cta-section-ribbon-flipped::after {
    clip-path: polygon(100% 0, 100% 100%, 0% 100%);
    transform: scaleX(-1);
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--light-text);
}

/* Footer */
/* footer {
    padding: 60px 0 30px;
    background-color: var(--background-color);
    color: white;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col p {
    margin: 20px 0;
    color: #ccc;
} */

/* .footer-logo {
    height: 30px;
    filter: brightness(0) invert(1);
} */

/* .social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #ccc;
} */

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #ccc;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
/*     header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        gap: 15px;
    } */
    
    .hero-training {
        padding: 0px 0 0px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .strapline p:first-child {
        font-size: 1.4em;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .segment-control {
        width: 100%;
        justify-content: center;
    }
    
    .segment-btn {
        flex: 1;
        text-align: center;
    }
    
    .card-header, .card-body {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .pricing-toggle {
        flex-direction: column;
    }
    
    .metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .strapline p:first-child {
        font-size: 1.3em;
    }
    
    .card-header h3 {
        font-size: 20px;
    }
    
    .features li {
        padding-left: 20px;
        font-size: 13px;
    }
    
    .sub-feature {
        padding-left: 15px;
    }
    
    .card-header, .card-body {
        padding: 20px 15px;
    }
    
    .checkmark {
        left: 0;
    }
    
    .checkmark-sub {
        left: 15px;
    }
}

.training-rich-text {
  color: #000;
}

.training-rich-text ul {
  list-style: none;
  padding-left: 0;
  margin: 0; 
  color: #000000; 
  font-size: 1.0rem; 
  line-height: 1.6;
}

.training-rich-text ul li {
  padding-left: 25px; 
  position: relative; 
  margin-bottom: 10px;
}
.training-rich-text ul li:before {
  color: #FF5722; 
  position: absolute; 
  left: 0;
  content: '→';
}
.training-rich-text h2 {
  font-size: 2.5rem; 
  font-weight: 600; 
  margin-bottom: 20px;
}
.training-rich-text .text-columns h3 {
  font-size: 1.6rem; 
  line-height: 1.7; 
  max-width: 100%; 
  margin: 0 auto 25px auto; 
  white-space: pre-line; 
  text-align: center; 
  color: #CCCCCC;
}
.training-rich-text .column p {
  font-size: 1.1rem; 
  line-height: 1.7;  
  white-space: pre-line;
}


/* ABMaaS Credits Styles */
.credits-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 25px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

/* Credits Section Styles */
.credits-section {
    padding: 80px 0;
    background-color: var(--light-background);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 40px;
}

.credits-container {
    max-width: 800px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.total-credits-cost {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 87, 34, 0.1);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

#total-additional-cost {
    color: var(--primary-color);
}

.credit-slider-container {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 8px;
}

.credit-type {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-color);
}

.credit-type .checkmark {
    color: var(--primary-color);
    margin-right: 8px;
}

.slider-container {
    padding: 0 5px;
}

.slider-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.included-amount {
    color: var(--success-color);
    font-weight: 500;
}

.price-per-unit {
    color: var(--light-text);
}

.credit-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: var(--border-color);
    outline: none;
    border-radius: 3px;
    margin: 15px 0;
}

.credit-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.credit-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--light-text);
    margin-bottom: 8px;
}

.additional-cost {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}


/* Typography from global site styles, applied only to the footer */

/* Headings */
.footer h3, .footer h4, .footer h5, .footer h6 {
  font-weight: 700;
  line-height: 1.1;
}
.footer h3 span, .footer h4 span, .footer h5 span, .footer h6 span,
.footer h3 div, .footer h4 div, .footer h5 div, .footer h6 div {
  font-size: inherit;
  font-weight: inherit;
}

.footer h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.footer h3.smaller {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .footer h3 {
    font-size: 1.8rem;
  }
  .footer h3.smaller {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .footer h3 {
    font-size: 2.0rem;
  }
  .footer h3.smaller {
    font-size: 1.4rem;
  }

}
.footer h4 {
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.footer h5 {
  font-size: 1.1rem;
  margin-top: 2rem;
}
.footer h6 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}


/* Taken from main index file */
.faq-accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

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

 header, .footer {
   font-family: 'Gothic A1', sans-serif;
   font-size: calc(0.2vw + 16px);
   font-weight: 400;
}
.training-pricing-page {
  font-size: 16px;
}


.show-more-container {
  margin-bottom: 40px;
}

.full-width-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.learning-formats-grid {
  display: flex;
  gap: 30px;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

.format-column {
  flex: 1; /* Set default flex for desktop */
}

/* Mobile Styles */
.hero-training-br { display: none; } /* Hide line break by default */

@media (max-width: 768px) {
  .hero-training-br { display: block; } /* Show line break on mobile */

  .hero-training h1 {
    font-size: 2.2rem !important; /* Adjust main headline size for mobile */
  }

  .hero-training .hero-training-subtitle {
    font-size: 1.5rem !important; /* Adjust subtitle size for mobile */
  }

  .footer-grid {
    grid-template-columns: 1fr; /* Stack columns on mobile */
    text-align: center; /* Center-align text */
  }

  .footer-col {
    margin-bottom: 30px; /* Add space between stacked columns */
  }

  .footer-col .social-links {
    justify-content: center; /* Center social icons */
  }

  .learning-formats-grid {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center the columns */
  }

  .learning-formats-grid .format-column {
    flex-basis: 100%; /* Ensure each item takes full width */
    max-width: 350px; /* Set a max-width for readability */
    margin-bottom: 40px; /* Add space between items */
  }

  .pillar-container {
    padding-left: 40px !important; /* Create space for the number */
  }

  .pillar > .pillar-content {
    padding-left: 40px !important; /* Add space for the number */
  }

  .pillar-content {
    padding-left: 40px; /* Add space for the number */
  }

  .pillar-number {
    left: -20px !important; /* Adjust position for mobile */
  }

  .pillars-container {
    flex-direction: column;
    gap: 30px !important; /* Adjust gap for mobile */
  }

  .evolved-section-container {
    flex-direction: column-reverse;
    gap: 20px !important; /* Adjust gap for mobile */
  }
}

/*
 * TAKEN FROM COURSE DETAIL PAGE 
 * 
*/


/* Default Desktop Styles */
/*         .faq-accordion {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: start;
        } */

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .sidebar-testimonial-content {
                flex-direction: column;
                text-align: center;
            }
            .sidebar-testimonial-text {
                padding-left: 0 !important;
                margin-bottom: 20px;
                font-size: 1rem !important;
            }
            .sidebar-testimonial-author {
                text-align: center !important;
                padding-left: 0 !important;
            }
            .sidebar-testimonial-quote {
                font-size: 12rem !important;
                top: 0;
                left: 0;
            }
            .responsive-columns {
                flex-direction: column;
            }
            .faq-accordion {
                grid-template-columns: 1fr;
            }
        }


/* Course show/hide buttons */
/* .show-more-container {
    text-align: center;
    padding: 20px 0;
}

.show-more-container .btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-container .btn-secondary:hover {
    background-color: #FFFFFF;
    color: #121212;
} */


        /* Responsive Header Styles */
/*         .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative; 
        }

        .hamburger-menu {
            display: none; 
            background: none;
            border: none;
            color: #333; 
            font-size: 24px;
            cursor: pointer;
            z-index: 1001; 
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
        } */

        .learning-formats-grid {
            display: flex;
            gap: 30px;
            text-align: center;
            margin-bottom: 40px;
            color: #000000;
        }

        .format-column {
            flex: 1; 
        }

        /* Mobile Styles */
        .hero-br { display: none; } 

        .booking-modal {
            display: none; 
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.6);
        }

        .booking-modal-content {
            background-color: #fff;
            margin: 5% auto;
            padding: 40px;
            border-radius: 10px;
            width: 90%;
            max-width: 800px;
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            color: #333; /* Ensure text is visible */
        }

        .booking-modal-content * {
            box-sizing: border-box; /* Ensure proper form layout */
        }

        .booking-modal-content .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

                .booking-columns {
            display: flex;
            gap: 30px;
            margin-top: 20px;
            margin-bottom: 30px;
        }

        .booking-columns > div {
            flex: 1;
        }

        .booking-modal-close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            top: 15px;
            right: 25px;
        }

        .booking-modal-close:hover,
        .booking-modal-close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        .video-placeholder {
            background-color: #f0f0f0;
            padding: 40px 20px;
            text-align: center;
            border-radius: 8px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .video-placeholder h3 {
            margin: 0;
            font-size: 1.5rem;
            color: #333;
        }

        .video-placeholder .play-icon {
            font-size: 3rem; /* Slightly smaller icon */
            color: #FF5722;
            cursor: pointer;
            margin-top: 10px;
        }

        .stripe-section {
            display: flex;
            flex-direction: column; /* Stack content vertically */
            align-items: flex-start; /* Align to the left */
            justify-content: space-between; /* Push content apart */
            gap: 20px;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            height: 100%; /* Make it fill the column height */
        }

        .invoice-section {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            display: block; /* Ensure label takes full width */
        }

        .form-group input,
        .form-group select {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }

        .terms-group {
            display: flex; /* Explicitly set display */
            flex-direction: row;
            align-items: center;
            gap: 10px;
        }

        @media (max-width: 768px) {
            #course-overview-section .course-details-card {
                position: relative !important; /* Force disable sticky behavior */
            }

/*             .hero-br { display: block; } 

            .hero h1 {
                font-size: 2.2rem !important; 
            }

            .hero .hero-subtitle {
                font-size: 1.5rem !important; 
            }

            .footer-grid {
                grid-template-columns: 1fr; 
                text-align: center; 
            }

            .footer-col {
                margin-bottom: 30px; 
            }

            .footer-col .social-links {
                justify-content: center;
            } */

            .learning-formats-grid {
                flex-direction: column; /* Stack items vertically */
                align-items: center; /* Center the columns */
            }

            .learning-formats-grid .format-column {
                flex-basis: 100%; /* Ensure each item takes full width */
                max-width: 350px; /* Set a max-width for readability */
                margin-bottom: 40px; /* Add space between items */
            }

            .pillar-container {
                padding-left: 40px !important; /* Create space for the number */
            }

            .pillar > .pillar-content {
                padding-left: 40px !important; /* Add space for the number */
            }

            .pillar-content {
                padding-left: 40px; /* Add space for the number */
            }

            .booking-modal-content {
                width: 95%;
                margin: 10% auto;
                padding: 20px;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .stripe-section {
                flex-direction: column;
                text-align: center;
            }

            .pillar-number {
                left: -20px !important; /* Adjust position for mobile */
            }

            .pillars-container {
                flex-direction: column;
                gap: 30px !important; /* Adjust gap for mobile */
            }

            .evolved-section-container {
                flex-direction: column-reverse;
                gap: 20px !important; /* Adjust gap for mobile */
            }

            .hamburger-menu {
                display: block; /* Show hamburger on mobile */
            }

            .nav-wrapper {
                display: none; /* Hide nav wrapper by default on mobile */
                flex-direction: column;
                position: absolute;
                top: 60px; /* Position below the header */
                left: 0;
                right: 0;
                background-color: #121212; /* Same as body background */
                padding: 20px;
                z-index: 1000;
            }

            .nav-wrapper.active {
                display: flex; /* Show when active */
            }

            .nav-wrapper nav ul {
                flex-direction: column;
                gap: 15px;
                width: 100%;
                text-align: center;
            }

            .nav-wrapper .cta-buttons {
                flex-direction: column;
                gap: 15px;
                width: 100%;
            }

            .nav-wrapper .cta-buttons .btn {
                width: 100%;
                text-align: center;
            }
        }
    /* Mobile Styles */
        @media (max-width: 768px) {
            #course-overview-section {
                flex-direction: column !important; /* Stack columns on mobile */
            }
        }

.course-hidden {
            display: none;
        }

/* .faq-accordion {
                        margin: 0 auto;
                    }
                    
                    .faq-item {
                        margin-bottom: 15px;
                        border-radius: 8px;
                        overflow: hidden;
                    }
                    
                    .faq-question {
                        background-color: #333333;
                        color: #FFFFFF;
                        padding: 10px 15px;
                        font-size: 1rem;
                        font-weight: 500;
                        cursor: pointer;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        transition: background-color 0.3s ease;
                    }
                    
                    .faq-question:hover {
                        background-color: #444444;
                    }
                    
                    .faq-toggle {
                        width: 24px;
                        height: 24px;
                        background-color: transparent;
                        position: relative;
                        flex-shrink: 0;
                    }
                    
                    .faq-toggle:before,
                    .faq-toggle:after {
                        content: '';
                        position: absolute;
                        background-color: #FF6B35; 
                        transition: transform 0.3s ease;
                    }
                    
                    .faq-toggle:before {
                        width: 2px;
                        height: 16px;
                        top: 4px;
                        left: 11px;
                    }
                    
                    .faq-toggle:after {
                        width: 16px;
                        height: 2px;
                        top: 11px;
                        left: 4px;
                    }
                    
                    .faq-answer {
                        background-color: #222222;
                        color: #CCCCCC;
                        max-height: 0;
                        overflow: hidden;
                        transition: max-height 0.4s ease, padding 0.4s ease;
                        padding: 0 25px;
                        font-size: 1rem;
                        line-height: 1.6;
                    }
                    
                    .faq-item.active .faq-question {
                        background-color: #444444;
                    }
                    
                    .faq-item.active .faq-toggle:before {
                        transform: rotate(90deg);
                        opacity: 0;
                    }
                    
                    .faq-item.active .faq-toggle:after {
                        transform: rotate(180deg);
                    }
                    
                    .faq-item.active .faq-answer {
                        max-height: 1000px;
                        padding: 20px 25px;
                    }
 */
/*
 * END
 * 
*/