* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Header Styles */
header {
    background-color: #30525C;
    color: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 70px;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 1.5rem 1.2rem;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links > li > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #30525C;
    list-style: none;
    padding: 0.5rem 0;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Add padding to body to account for fixed header */
body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 70px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #30525C; /* Fallback color */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-black {
    color: #000000;
}

.title-colored {
    color: #30525C;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #000000;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #000000;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #C35627;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #C35627;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #a34820;
    border-color: #a34820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 86, 39, 0.4);
}

/* Footer Styles */
footer {
    background-color: #30525C;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin: 0;
    width: 100%;
}

footer p {
    font-size: 0.9rem;
    margin: 0;
}

footer a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Main Content Styles */
main {
    flex: 1;
}

/* About Section Styles */
.about-section {
    background-color: white;
    padding: 5rem 2rem;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-title {
    color: #30525C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.about-text {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* Services Section Styles */
.services-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    color: #30525C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.services-subtitle {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-top-line {
    height: 4px;
    background-color: #30525C;
    width: 100%;
}

.card-title {
    color: #30525C;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 2rem 1rem 2rem;
}

.card-text {
    color: #000000;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 2rem 1.5rem 2rem;
    flex-grow: 1;
}

.card-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #C35627;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #C35627;
    letter-spacing: 0.5px;
    margin: 0 2rem 2rem 2rem;
    text-align: center;
    width: calc(100% - 4rem);
}

.card-button:hover {
    background-color: #a34820;
    border-color: #a34820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 86, 39, 0.4);
}

/* Workstreams Section Styles */
.workstreams-section {
    background-color: white;
    padding: 5rem 2rem;
}

.workstreams-container {
    max-width: 1400px;
    margin: 0 auto;
}

.workstreams-title {
    color: #30525C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.workstreams-subtitle {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-wrapper {
    overflow: hidden;
    margin-top: 3rem;
    padding: 0 2rem;
    position: relative;
}

.workstreams-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #30525C;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover {
    background-color: #C35627;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-container {
    overflow: visible;
    position: relative;
    margin: 0 -2rem;
    padding: 1rem 2rem;
    cursor: grab;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.workstream-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #30525C;
    filter: grayscale(100%);
}

.workstream-card-title {
    color: #30525C;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.workstream-card-text {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: center;
}

.workstream-button {
    display: inline-block;
    padding: 10px 24px;
    background-color: #C35627;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #C35627;
    letter-spacing: 0.5px;
    text-align: center;
    align-self: center;
}

.workstream-button:hover {
    background-color: #a34820;
    border-color: #a34820;
}

/* Ninja Framework Section Styles */
.ninja-framework-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.ninja-framework-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ninja-framework-title {
    color: #30525C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.ninja-framework-subtitle {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ninja-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ninja-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ninja-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.ninja-card-top {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ninja-letter {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.ninja-card-content {
    padding: 2rem;
    background-color: white;
}

.ninja-card-title {
    color: #000000;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ninja-card-subtitle {
    color: #C35627;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ninja-card-text {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section Styles */
.contact-section {
    background-color: white;
    padding: 5rem 2rem 3rem 2rem;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-title {
    color: #30525C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-subtitle {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-form {
    width: 100%;
    max-width: 100%;
}

/* Services Page Hero Section */
.services-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 2rem;
}

.services-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: white;
}

.services-hero-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: white;
}

.services-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #C35627;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #C35627;
    letter-spacing: 0.5px;
}

.services-cta-primary:hover {
    background-color: #a34820;
    border-color: #a34820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 86, 39, 0.4);
}

.services-cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid white;
    letter-spacing: 0.5px;
}

.services-cta-secondary:hover {
    background-color: white;
    color: #30525C;
    transform: translateY(-2px);
}

/* Services Intro Section */
.services-intro {
    background-color: white;
    padding: 4rem 2rem;
}

.services-intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.services-intro-text {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

/* Success Stories Section */
.success-stories-section {
    background-color: white;
    padding: 5rem 2rem;
}

.success-stories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.success-stories-title {
    color: #30525C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

/* About Page Styles */
.about-hero {
    position: relative;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1100px;
    padding: 0 2rem;
}

.about-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: white;
}

.about-hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: white;
}

.about-content-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.about-content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-block {
    margin-bottom: 4rem;
}

.about-block:last-child {
    margin-bottom: 0;
}

.about-block-title {
    color: #30525C;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-block-text {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-block-text:last-child {
    margin-bottom: 0;
}

.highlight-block {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #30525C;
}

.about-approach {
    margin: 2rem 0;
}

.approach-subtitle {
    color: #30525C;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.approach-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.approach-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.approach-icon {
    color: #C35627;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.approach-content {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-cta-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-link-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #C35627;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #C35627;
    letter-spacing: 0.5px;
}

.about-link-button:hover {
    background-color: #a34820;
    border-color: #a34820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 86, 39, 0.4);
}

.why-works-block {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #30525C;
}

.why-works-block .about-block-title {
    color: #30525C;
}

.about-block-text-intro {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.why-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.why-works-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-icon {
    color: #C35627;
    font-size: 1.5rem;
    font-weight: 700;
}

.why-text {
    color: #000000;
    font-size: 1.05rem;
    font-weight: 500;
}

.about-result-text {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0;
}

/* Professional Services Page Styles */
.ps-hero {
    position: relative;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ps-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ps-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.ps-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1100px;
    padding: 0 2rem;
}

.ps-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: white;
}

.ps-hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: white;
}

.ps-cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #C35627;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #C35627;
    letter-spacing: 0.5px;
}

.ps-cta-button:hover {
    background-color: #a34820;
    border-color: #a34820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 86, 39, 0.4);
}

.ps-intro-section {
    background-color: white;
    padding: 4rem 2rem;
}

.ps-intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ps-intro-text {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

.ps-offerings-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.ps-offerings-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ps-section-title {
    color: #30525C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.ps-offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ps-offering-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #30525C;
}

.ps-offering-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #30525C;
    filter: grayscale(100%);
}

.ps-offering-title {
    color: #30525C;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ps-offering-text {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.ps-process-section {
    background-color: white;
    padding: 5rem 2rem;
}

.ps-process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ps-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.ps-process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.ps-step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #30525C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.ps-step-content {
    flex: 1;
}

.ps-step-title {
    color: #30525C;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ps-step-text {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.ps-process-note {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* Training Page Styles */
.training-hero {
    position: relative;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.training-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.training-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.training-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1100px;
    padding: 0 2rem;
}

.training-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: white;
}

.training-hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: white;
}

.training-cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #C35627;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #C35627;
    letter-spacing: 0.5px;
}

.training-cta-button:hover {
    background-color: #a34820;
    border-color: #a34820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 86, 39, 0.4);
}

.training-intro-section {
    background-color: white;
    padding: 4rem 2rem;
}

.training-intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.training-intro-text {
    color: #000000;
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
}

.training-goal {
    font-weight: 600;
    color: #30525C;
    margin-bottom: 0;
}

.training-packages-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.training-packages-container {
    max-width: 1000px;
    margin: 0 auto;
}

.training-section-title {
    color: #30525C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.training-package {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
    border-left: 4px solid #30525C;
}

.training-package:last-child {
    margin-bottom: 0;
}

.training-package-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.training-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #30525C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.training-package-title {
    color: #30525C;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.training-package-description {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.training-highlights-title {
    color: #C35627;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.training-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.training-highlights-list li {
    color: #000000;
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.training-highlights-list li:before {
    content: "•";
    color: #C35627;
    font-size: 1.5rem;
    position: absolute;
    left: 0.5rem;
    top: -0.2rem;
}

.training-delivery-section {
    background-color: white;
    padding: 5rem 2rem;
}

.training-delivery-container {
    max-width: 1000px;
    margin: 0 auto;
}

.training-delivery-intro {
    color: #000000;
    font-size: 1.15rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
}

.training-delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.training-delivery-item {
    text-align: center;
    padding: 2rem;
    background-color: #F5F5F5;
    border-radius: 8px;
}

.delivery-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
}

.delivery-title {
    color: #30525C;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.delivery-text {
    color: #000000;
    font-size: 1rem;
    margin: 0;
}

.training-outcome-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.training-outcome-container {
    max-width: 900px;
    margin: 0 auto;
}

.training-outcome-intro {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
}

.training-outcome-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.training-outcome-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.outcome-check {
    flex-shrink: 0;
    color: #C35627;
    font-size: 2rem;
    font-weight: 700;
}

.outcome-text {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Governance Page Styles */
.governance-hero {
    position: relative;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.governance-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.governance-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.governance-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1100px;
    padding: 0 2rem;
}

.governance-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: white;
}

.governance-hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: white;
}

.governance-cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #C35627;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #C35627;
    letter-spacing: 0.5px;
}

.governance-cta-button:hover {
    background-color: #a34820;
    border-color: #a34820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 86, 39, 0.4);
}

.governance-intro-section {
    background-color: white;
    padding: 4rem 2rem;
}

.governance-intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.governance-intro-text {
    color: #000000;
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
}

.governance-goal {
    font-weight: 600;
    color: #30525C;
    margin-bottom: 0;
}

.governance-offerings-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.governance-offerings-container {
    max-width: 1000px;
    margin: 0 auto;
}

.governance-section-title {
    color: #30525C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.governance-offering {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border-left: 4px solid #30525C;
}

.governance-offering:last-child {
    margin-bottom: 0;
}

.governance-offering-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.governance-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #30525C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.governance-offering-title {
    color: #30525C;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.governance-offering-text {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.governance-approach-section {
    background-color: white;
    padding: 5rem 2rem;
}

.governance-approach-container {
    max-width: 1000px;
    margin: 0 auto;
}

.governance-approach-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.governance-approach-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.governance-step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #30525C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.governance-step-content {
    flex: 1;
}

.governance-step-title {
    color: #30525C;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.governance-step-text {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.governance-approach-note {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
    margin: 0;
}

.governance-benefits-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.governance-benefits-container {
    max-width: 900px;
    margin: 0 auto;
}

.governance-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.governance-benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    flex-shrink: 0;
    color: #C35627;
    font-size: 2rem;
    font-weight: 700;
}

.benefit-text {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Workstreams Landing Page Styles */
.workstreams-page-hero {
    position: relative;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.workstreams-page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.workstreams-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.workstreams-page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1100px;
    padding: 0 2rem;
}

.workstreams-page-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: white;
}

.workstreams-page-hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: white;
}

.workstreams-page-cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #C35627;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #C35627;
    letter-spacing: 0.5px;
}

.workstreams-page-cta-button:hover {
    background-color: #a34820;
    border-color: #a34820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 86, 39, 0.4);
}

.workstreams-page-intro-section {
    background-color: white;
    padding: 4rem 2rem;
}

.workstreams-page-intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.workstreams-page-intro-text {
    color: #000000;
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
}

.workstreams-page-goal {
    font-weight: 600;
    color: #30525C;
    margin-bottom: 0;
}

.workstreams-page-core-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.workstreams-page-core-container {
    max-width: 1200px;
    margin: 0 auto;
}

.workstreams-page-section-title {
    color: #30525C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.workstreams-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.workstreams-page-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #30525C;
    display: flex;
    flex-direction: column;
}

.workstreams-page-icon {
    font-size: 3rem;
    color: #30525C;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
}

.workstreams-page-card-title {
    color: #30525C;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.workstreams-page-card-text {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.workstreams-page-card-link {
    color: #C35627;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.workstreams-page-card-link:hover {
    color: #a34820;
}

.workstreams-page-approach-section {
    background-color: white;
    padding: 5rem 2rem;
}

.workstreams-page-approach-container {
    max-width: 1000px;
    margin: 0 auto;
}

.workstreams-page-approach-intro {
    color: #000000;
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 2rem;
}

.workstreams-page-approach-flow {
    color: #30525C;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.workstreams-page-approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.workstreams-page-approach-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.approach-bullet {
    color: #C35627;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.approach-text-content {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.7;
}

.workstreams-page-approach-goal {
    color: #30525C;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    font-style: italic;
    margin: 0;
}

.workstreams-page-impact-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.workstreams-page-impact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.workstreams-page-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.workstreams-page-impact-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.impact-number {
    color: #C35627;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    color: #30525C;
}

.impact-text {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Profile Page Styles */
.profile-page {
    overflow: hidden;
    padding-top: 0;
}

.profile-page header {
    position: fixed;
    background-color: rgba(48, 82, 92, 0.95);
    backdrop-filter: blur(10px);
}

.profile-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.profile-slide {
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.slide-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    padding-top: 70px;
}

/* Slide 1 - Intro */
.slide-1 {
    background: linear-gradient(135deg, #30525C 0%, #4C848D 100%);
    color: white;
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.slide-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.slide-divider {
    width: 100px;
    height: 4px;
    background-color: #C35627;
    margin: 2rem auto;
}

.slide-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* Slide 2 - Problem */
.slide-2 {
    background-color: #F5F5F5;
}

.slide-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #30525C;
    margin-bottom: 1rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.problem-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.problem-item p {
    font-size: 1.2rem;
    color: #000;
    margin: 0;
}

/* Slide 3 - Solution */
.slide-3 {
    background-color: white;
}

.slide-text-large {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 3rem;
}

.solution-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.solution-item {
    background-color: #30525C;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Slide 4 - NINJA */
.slide-4 {
    background: linear-gradient(135deg, #4C848D 0%, #30525C 100%);
    color: white;
}

.slide-4 .slide-heading {
    color: white;
}

.ninja-profile-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ninja-profile-item {
    text-align: center;
}

.ninja-profile-letter {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #C35627;
    color: white;
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 80px;
    margin-bottom: 1rem;
}

.ninja-profile-item h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ninja-profile-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* Slide 5 - Services */
.slide-5 {
    background-color: #F5F5F5;
}

.services-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-profile-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #30525C;
}

.service-profile-item h4 {
    color: #30525C;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-profile-item p {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Slide 6 - Workstreams */
.slide-6 {
    background-color: white;
}

.workstreams-profile-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.workstream-profile-tag {
    background-color: #30525C;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
}

.slide-text-center {
    font-size: 1.3rem;
    color: #000;
    margin-top: 2rem;
}

/* Slide 7 - Impact */
.slide-7 {
    background-color: #F5F5F5;
}

.impact-profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.impact-profile-stat {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #C35627;
    margin-bottom: 1rem;
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
}

.impact-profile-stat p {
    font-size: 1.1rem;
    color: #000;
    margin: 0;
}

/* Slide 8 - Why Us */
.slide-8 {
    background-color: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: #F5F5F5;
    padding: 2rem;
    border-radius: 8px;
}

.why-us-icon {
    font-size: 2.5rem;
    color: #C35627;
    font-weight: 700;
}

.why-us-item p {
    font-size: 1.2rem;
    color: #000;
    margin: 0;
}

/* Slide 9 - CTA */
.slide-9 {
    background: linear-gradient(135deg, #30525C 0%, #4C848D 100%);
    color: white;
}

.slide-heading-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.slide-9 .slide-text-large {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.profile-cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #C35627;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #C35627;
    letter-spacing: 0.5px;
}

.profile-cta-button:hover {
    background-color: #a34820;
    border-color: #a34820;
    transform: translateY(-2px);
}

.profile-cta-secondary {
    background-color: transparent;
    border-color: white;
}

.profile-cta-secondary:hover {
    background-color: white;
    color: #30525C;
    border-color: white;
}

/* Workstream Detail Page Styles */
.workstream-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.workstream-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.workstream-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.workstream-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1100px;
    padding: 0 2rem;
}

.workstream-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: white;
}

.workstream-hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: white;
}

.workstream-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.workstream-cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #C35627;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #C35627;
    letter-spacing: 0.5px;
}

.workstream-cta-primary:hover {
    background-color: #a34820;
    border-color: #a34820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 86, 39, 0.4);
}

.workstream-cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid white;
    letter-spacing: 0.5px;
}

.workstream-cta-secondary:hover {
    background-color: white;
    color: #30525C;
    transform: translateY(-2px);
}

.workstream-intro-section {
    background-color: white;
    padding: 4rem 2rem;
}

.workstream-intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.workstream-intro-text {
    color: #000000;
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
}

.workstream-goal {
    font-weight: 600;
    color: #30525C;
    margin-bottom: 0;
}

.workstream-capabilities-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.workstream-capabilities-container {
    max-width: 1000px;
    margin: 0 auto;
}

.workstream-section-title {
    color: #30525C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.workstream-capability {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border-left: 4px solid #30525C;
}

.workstream-capability:last-child {
    margin-bottom: 0;
}

.workstream-capability-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.workstream-capability-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #30525C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.workstream-capability-title {
    color: #30525C;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.workstream-capability-text {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.workstream-approach-section {
    background-color: white;
    padding: 5rem 2rem;
}

.workstream-approach-container {
    max-width: 1000px;
    margin: 0 auto;
}

.workstream-approach-intro {
    color: #000000;
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 3rem;
}

.workstream-approach-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.workstream-approach-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.workstream-step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #30525C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.workstream-step-content {
    flex: 1;
}

.workstream-step-title {
    color: #30525C;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.workstream-step-text {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.workstream-approach-note {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
    margin: 0;
}

.workstream-impact-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.workstream-impact-container {
    max-width: 900px;
    margin: 0 auto;
}

.workstream-impact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.workstream-impact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.impact-check {
    flex-shrink: 0;
    color: #C35627;
    font-size: 2rem;
    font-weight: 700;
}

.impact-text {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
}


/* N.I.N.J.A. Framework Page Styles */
.ninja-page-hero {
    position: relative;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ninja-page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ninja-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.ninja-page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1100px;
    padding: 0 2rem;
}

.ninja-page-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: white;
}

.ninja-page-hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: white;
}

.ninja-page-cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #C35627;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #C35627;
    letter-spacing: 0.5px;
}

.ninja-page-cta-button:hover {
    background-color: #a34820;
    border-color: #a34820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 86, 39, 0.4);
}

.ninja-page-intro-section {
    background-color: white;
    padding: 4rem 2rem;
}

.ninja-page-intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ninja-page-intro-text {
    color: #000000;
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
}

.ninja-page-goal {
    font-weight: 600;
    color: #30525C;
    margin-bottom: 0;
}

.ninja-page-framework-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.ninja-page-framework-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ninja-page-section-title {
    color: #30525C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.ninja-page-principle {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
}

.ninja-page-principle:last-child {
    margin-bottom: 0;
}

.ninja-page-principle-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.ninja-page-letter-box {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
}

.ninja-page-principle-title-wrapper {
    flex: 1;
}

.ninja-page-principle-title {
    color: #30525C;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ninja-page-principle-subtitle {
    color: #C35627;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.ninja-page-principle-text {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.ninja-page-practice-section {
    background-color: white;
    padding: 5rem 2rem;
}

.ninja-page-practice-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ninja-page-practice-intro {
    color: #000000;
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 3rem;
}

.ninja-page-practice-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.ninja-page-practice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.ninja-page-step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #30525C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.ninja-page-step-content {
    flex: 1;
}

.ninja-page-step-title {
    color: #30525C;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ninja-page-step-text {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.ninja-page-practice-note {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
    margin: 0;
}

.ninja-page-why-section {
    background-color: #F5F5F5;
    padding: 5rem 2rem;
}

.ninja-page-why-container {
    max-width: 900px;
    margin: 0 auto;
}

.ninja-page-why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ninja-page-why-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.ninja-why-icon {
    flex-shrink: 0;
    color: #C35627;
    font-size: 2rem;
    font-weight: 700;
}

.ninja-why-text {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 968px) {
    /* Header & Navigation */
    nav {
        padding: 0 1rem;
    }

    .logo img {
        height: 32px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #30525C;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 1rem 0;
        overflow-y: auto;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        padding: 1rem 1.5rem;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: rgba(0, 0, 0, 0.2);
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 0.8rem 2.5rem;
    }

    .workstreams-container {
        padding: 0 1rem;
    }

    .carousel-nav {
        display: none;
    }

    /* Hero Sections */
    .hero {
        height: auto;
        min-height: 70vh;
        padding: 4rem 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    /* All Hero variants */
    .services-hero,
    .about-hero,
    .ps-hero,
    .training-hero,
    .governance-hero,
    .workstreams-page-hero,
    .workstream-hero,
    .ninja-page-hero {
        height: auto;
        min-height: 50vh;
        padding: 4rem 1rem;
    }

    .services-hero-title,
    .about-hero-title,
    .ps-hero-title,
    .training-hero-title,
    .governance-hero-title,
    .workstreams-page-hero-title,
    .workstream-hero-title,
    .ninja-page-hero-title {
        font-size: 1.8rem;
    }

    .services-hero-text,
    .about-hero-text,
    .ps-hero-text,
    .training-hero-text,
    .governance-hero-text,
    .workstreams-page-hero-text,
    .workstream-hero-text,
    .ninja-page-hero-text {
        font-size: 1rem;
    }

    .services-hero-buttons,
    .workstream-hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .services-cta-primary,
    .services-cta-secondary,
    .workstream-cta-primary,
    .workstream-cta-secondary {
        width: 100%;
        text-align: center;
    }

    /* Sections */
    .about-section,
    .services-section,
    .workstreams-section,
    .ninja-framework-section,
    .contact-section,
    .services-intro,
    .success-stories-section,
    .about-content-section,
    .ps-intro-section,
    .ps-offerings-section,
    .ps-process-section,
    .training-intro-section,
    .training-packages-section,
    .training-delivery-section,
    .training-outcome-section,
    .governance-intro-section,
    .governance-offerings-section,
    .governance-approach-section,
    .governance-benefits-section,
    .workstreams-page-intro-section,
    .workstreams-page-core-section,
    .workstreams-page-approach-section,
    .workstreams-page-impact-section,
    .workstream-intro-section,
    .workstream-capabilities-section,
    .workstream-approach-section,
    .workstream-impact-section,
    .ninja-page-intro-section,
    .ninja-page-framework-section,
    .ninja-page-practice-section,
    .ninja-page-why-section {
        padding: 3rem 1rem;
    }

    /* Titles */
    .about-title,
    .services-title,
    .workstreams-title,
    .ninja-framework-title,
    .contact-title,
    .success-stories-title,
    .about-block-title,
    .ps-section-title,
    .training-section-title,
    .governance-section-title,
    .workstreams-page-section-title,
    .workstream-section-title,
    .ninja-page-section-title {
        font-size: 1.8rem;
    }

    /* Service Cards */
    .services-cards {
        grid-template-columns: 1fr;
    }

    /* Carousel */
    .carousel-wrapper {
        padding: 0;
    }

    .carousel-track {
        gap: 1rem;
    }

    .workstream-card {
        flex: 0 0 85%;
        min-height: auto;
    }

    /* NINJA Framework Cards */
    .ninja-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ninja-card-top {
        padding: 1.5rem;
    }

    .ninja-letter {
        font-size: 2rem;
    }

    .ninja-card-content {
        padding: 1.5rem;
    }

    .ninja-card-title {
        font-size: 1.2rem;
    }

    .ninja-card-subtitle {
        font-size: 0.9rem;
    }

    .ninja-card-text {
        font-size: 0.9rem;
    }

    /* Professional Services */
    .ps-offerings-grid {
        grid-template-columns: 1fr;
    }

    .ps-process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Training */
    .training-delivery-grid {
        grid-template-columns: 1fr;
    }

    /* Governance */
    .governance-approach-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Workstreams Landing */
    .workstreams-page-grid {
        grid-template-columns: 1fr;
    }

    .workstreams-page-approach-grid {
        grid-template-columns: 1fr;
    }

    .workstreams-page-impact-grid {
        grid-template-columns: 1fr;
    }

    /* Workstream Detail Pages */
    .workstream-approach-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* NINJA Framework Page */
    .ninja-page-principle-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ninja-page-letter-box {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .ninja-page-principle-title {
        font-size: 1.5rem;
    }

    .ninja-page-principle-subtitle {
        font-size: 1rem;
    }

    .ninja-page-practice-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Profile/Presentation Page */
    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1.3rem;
    }

    .slide-heading {
        font-size: 2rem;
    }

    .slide-heading-large {
        font-size: 2.2rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .solution-highlights {
        grid-template-columns: 1fr;
    }

    .ninja-profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .ninja-profile-letter {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        line-height: 60px;
    }

    .ninja-profile-item h4 {
        font-size: 1rem;
    }

    .ninja-profile-item p {
        font-size: 0.85rem;
    }

    .services-profile-grid {
        grid-template-columns: 1fr;
    }

    .workstreams-profile-tag {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .impact-profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* About Page */
    .why-works-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-links {
        flex-direction: column;
    }

    .about-link-button {
        width: 100%;
        text-align: center;
    }

    /* Buttons */
    .cta-button,
    .ps-cta-button,
    .training-cta-button,
    .governance-cta-button,
    .workstreams-page-cta-button,
    .ninja-page-cta-button,
    .profile-cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-hero-title,
    .about-hero-title,
    .ps-hero-title,
    .training-hero-title,
    .governance-hero-title,
    .workstreams-page-hero-title,
    .workstream-hero-title,
    .ninja-page-hero-title {
        font-size: 1.5rem;
    }

    .about-title,
    .services-title,
    .workstreams-title,
    .ninja-framework-title,
    .contact-title {
        font-size: 1.5rem;
    }

    .ninja-profile-grid {
        grid-template-columns: 1fr;
    }

    .impact-profile-grid {
        grid-template-columns: 1fr;
    }

    .workstream-card {
        flex: 0 0 95%;
    }
}

/* 404 Error Page Styles */
.error-404-section {
    background-color: white;
    padding: 3rem 2rem;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.error-404-image {
    margin-bottom: 2rem;
}

.error-404-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.error-404-title {
    color: #30525C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.error-404-subtitle {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.error-404-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: #F5F5F5;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid #30525C;
    text-align: left;
}

.error-404-link:hover {
    background-color: #30525C;
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(48, 82, 92, 0.2);
}

.link-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.error-404-link:hover .link-icon {
    transform: scale(1.2);
}

.link-content {
    flex: 1;
}

.link-content h3 {
    color: #30525C;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.error-404-link:hover .link-content h3 {
    color: white;
}

.link-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s ease;
}

.error-404-link:hover .link-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .error-404-title {
        font-size: 1.8rem;
    }

    .error-404-subtitle {
        font-size: 1rem;
    }

    .error-404-image img {
        max-width: 200px;
    }

    .error-404-link {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }

    .link-icon {
        font-size: 2rem;
    }

    .link-content h3 {
        font-size: 1.1rem;
    }

    .link-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .error-404-section {
        padding: 2rem 1rem;
    }

    .error-404-title {
        font-size: 1.5rem;
    }

    .error-404-image img {
        max-width: 150px;
    }

    .error-404-link {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .link-content {
        text-align: center;
    }
}

@media (max-width: 960px) {
    /* ... existing mobile styles ... */

    /* Hero Section - Replace video with static image on mobile */
    .hero {
        background-image: url('/img/hero-background.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero-video {
        display: none; /* Hide video on mobile */
    }

    /* Add semi-transparent overlay for better text readability on mobile */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.7); /* Light overlay for readability */
        z-index: 1;
    }

    .hero-content {
        z-index: 2; /* Ensure content is above overlay */
    }
}