        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: 'Source Sans 3', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header */

		


header {
	background: #fff;
	padding: 1rem 4rem;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 100%;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 100%;
            position: relative;
        }
		
        .logo-icon img {
            max-width:170px;
        }		

        .logo-text {
            font-weight: bold;
            font-size: 1.1rem;
        }



.header-buttons {
	display: flex;
	gap: 1rem;
	align-items: center;
}







        /* Responsive Design */
        @media (max-width: 1050px) {
          
			.header-buttons {
				flex-direction:column;
			}	
		}


        .nav {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .cta-button {
            background: #662e91;
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
            white-space: nowrap;
			font-size: 20px;
        }

        .cta-button:hover {
            background: #803ab6;
        }

        .menu-toggle {
            display: flex;
            flex-direction: column;
            gap: 12px;
            cursor: pointer;
            padding: 10px;
            background: transparent;
            border: none;
            z-index: 9999;
        }

        .menu-toggle span {
            width: 120px;
            height: 10px;
            background: #092e65;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 400px;
            height: 100vh;
            background: white;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            transition: right 0.3s ease;
            z-index: 9999;
            padding-top: 80px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
			width:100%;
        }

        .mobile-menu li {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-menu a {
            display: block;
            padding: 0.8rem 2rem;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s;
        }

@media (max-width: 768px) {
	.mobile-menu a {
		padding: 0.5rem 1.6rem;
		line-height: 1.4;
		
	}
}

        .mobile-menu a:hover {
            background: #f5f5f5;
            color: #0379c3;
        }

.mobile-menu p {
	display: block;
    padding: 1.1rem 2rem;
    color: #555;
    text-decoration: none;
    font-weight: 400;
	margin: 0px
}

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9998;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 700px;
            display: flex;
            flex-direction: column;
        }

        .hero-container {
            position: relative;
            width: 100%;
            flex: 1;
            display: flex;
            align-items: center;
        }

        .hero-content {
            position: absolute;
            left: 4rem;
            z-index: 10;
            padding: 2.5rem;
			width: inherit;
        }

        .hero-content h1 {
            font-size: 4.2rem;
            margin-bottom: 1rem;
            line-height: 1.2;
			color: #140c0a;
        }

        .hero-content .highlight {
            color: #0379c3;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10rem;
            padding: 2rem;
            max-width: 100%;
            position: relative;
			margin-top: -7rem;
            z-index: 10;
        }


  .rotating-text {
    position: relative;
    height: 82px;
    overflow: hidden;
  }

  .rotating-text span {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: rotateX(-90deg);
    animation: rotateFade 6s linear infinite;
  }

  /* Delay each word so they appear one after another */
  .rotating-text span:nth-child(1) { animation-delay: 0s; }
  .rotating-text span:nth-child(2) { animation-delay: 2s; }
  .rotating-text span:nth-child(3) { animation-delay: 4s; }

  @keyframes rotateFade {
    0%   { opacity: 0; transform: rotateX(-90deg); }
    10%  { opacity: 1; transform: rotateX(0deg); }
    30%  { opacity: 1; transform: rotateX(0deg); }
    40%  { opacity: 0; transform: rotateX(90deg); }
    100% { opacity: 0; transform: rotateX(90deg); }
  }



.feature-badge {
	width: 166px;
	height: 166px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	text-align: center;
	padding: 0rem;
	font-size: 1.4rem;
	line-height: 1.1;
	border: 5px solid #fff;
}

.feature-badge a{

	color: white;
	font-weight: bold;
	font-size: 1.4rem;
	text-decoration:none;

}


        .badge-purple { background: #662e91; }
        .badge-blue { background: #003d6b; }
        .badge-green { background: #9f2163; }
        .badge-cyan { background: #0379c3; }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Platform Description */
        .platform-section {
            padding: 4rem 2rem;
            background: white;
        }

        .platform-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: 4rem;
            align-items: center;
        }

        .platform-logo {
            text-align: center;
        }

        .platform-logo img {
            max-width: 100%;
            height: auto;
        }

        .platform-description {
            line-height: 1.7;
			color: #666;
			font-size: 1.4rem;
        }

.platform-description h1 {
	font-weight: 500;
    font-size: 1.8em;
	line-height: 200%;
	margin-bottom: -10px;
}

        /* Video Section */
        .video-section {
            padding: 4rem 2rem;
            background: #f0f2f4;
        }

        .video-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3rem;
            align-items: center;
        }

        .video-intro h2 {
            
    margin-bottom: 1rem;
    color: #555;
    line-height: normal;
    font-size: 1.8rem;
    font-weight: 500;
        }

        .video-intro p {
            line-height: 1.7;
    color: #666;
    font-size: 1.4rem;
        }

        .video-player {
            position: relative;
            padding-bottom: 56.25%;
            background: #000;
            border-radius: 10px;
            overflow: hidden;
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Articles Section */
        .articles-section {
            padding: 4rem 2rem;
            background: white;
        }

        .articles-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .article-card {
            border: 2px solid #888;
    border-radius: 3px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .article-header {
            padding: 1.5rem;
            background: white;
        }

.articles-grid a { text-decoration: none; }

        .article-header h3 {
			font-size: 1.3rem;
			line-height: 1.4;
			color: #666;
			font-weight: 500;
}

        .article-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .articles-link {
            text-align: right;
            margin-top: 1rem;
        }

        .articles-link a {
            color: #666;
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: #41464b;
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.1rem;
        }

        .footer-logo-icon {
            width: 120px;
            border-radius: 5px;
        }

        .footer-logo-icon img{
            max-width:100%;
        }

        .footer-logo-text {
            font-weight: bold;
            font-size: 1.2rem;
        }

        .footer-address {
            margin-bottom: 1rem;
            line-height: 1.8;
            color: #bdc3c7;
        }

        .footer-copyright {
            color: #bdc3c7;
            font-size: 0.9rem;
            padding-top: 1rem;
            border-top: 1px solid #bdc3c7;
        }


        /* Responsive Design */
        @media (max-width: 1250px) {
			.hero-features {
				
				gap:6rem;
			}
			
		}

        /* Responsive Design */
        @media (max-width: 968px) {
            .platform-container,
            .video-container {
                grid-template-columns: 1fr;
            }
			

			.header-buttons {
				flex-direction:column;
			}	

			.hero {
				min-height:0;
				
			}
			
			.hero-container {
				display:none;
			}

            .hero-content {
                left: 2rem;
                max-width: 400px;
                padding: 2rem;
            }

            .hero-features {
                gap: 1rem;
                padding: 1.5rem 1rem;
				margin-top:0;
            }

            .articles-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem;
            }



            nav {
                flex-direction: column;
                align-items: center;
                position: relative;
            }

            .logo {
                margin-bottom: 1rem;
                justify-content: center;
            }

            .nav-buttons {
                flex-direction: column;
                width: 100%;
                align-items: center;
                gap: 0.75rem;
            }

            .nav-buttons .cta-button {
                display: block;
                width: 90%;
                max-width: 350px;
                text-align: center;
            }

            .menu-toggle {
                position: absolute;
                top: 0;
                right: 0;
            }


            .hero-content {
                left: 1rem;
                right: 1rem;
                max-width: none;
                padding: 1.5rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-features {
                flex-wrap: wrap;
                justify-content: center;
            }

            .feature-badge {
                width: 100px;
                height: 100px;
                font-size: 0.75rem;
            }
			
            .feature-badge a{

                font-size: 0.75rem;
            }
			
			.mobile-menu {
				width: 275px;
				padding-top: 155px;
			}
}

        @media (max-width: 480px) {
            header {
                padding: 1rem 0.5rem;
            }

            .logo-text {
                font-size: 1rem;
            }

            .nav-buttons .cta-button {
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
                width: 95%;
            }


            .hero-content h1 {
                font-size: 1.5rem;
            }

            .platform-section,
            .video-section,
            .articles-section {
                padding: 2rem 1rem;
            }

            .hero-features {
                gap: 0.75rem;
                padding: 1rem;
            }

            .feature-badge {
                width: 100px;
                height: 100px;
                font-size: 0.65rem;
                padding: 0.5rem;
            }

            .mobile-menu {
                width: 100%;
            }
        }
		
	.pillar1-wrapper {
            --p1-purple: #6b2d91;
            --p1-teal: #40c1d6;
            --p1-white: #ffffff;
            --p1-gray: #b3b3b3;
            --p1-navyblue: #003d6b;
            --p1-green: #9f2163;
            --p1-blue: #0379c3;
            
            margin: 0px 0 0 0; /* Margin to accommodate the overhangs */
            font-family: 'Arial', sans-serif;
		position: relative;
		z-index: 9997;
        }

        .pillar1-wrapper .pillar1-banner {
            position: relative;
            min-height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 12% 0% 10%;
            box-sizing: border-box;
        }
		
        .pillar1-wrapper  .pillar1-banner-purple {
            background-color: var(--p1-purple);
        }
		
        .pillar1-wrapper  .pillar1-banner-navyblue {
            background-color: var(--p1-navyblue);
        }		

        .pillar1-wrapper  .pillar1-banner-green {
            background-color: var(--p1-green);
        }	
		
        .pillar1-wrapper  .pillar1-banner-blue {
            background-color: var(--p1-blue);
        }			



        .pillar1-wrapper .pillar1-content {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        /* --- Text Area Styles --- */
        .pillar1-wrapper .pillar1-text-area {
            flex: 1;
            color: var(--p1-white);
            z-index: 2;
            order: 1; /* First on mobile */
        }

        .pillar1-wrapper .pillar1-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin: 0;
            font-weight: 800;
            color: var(--p1-white);
            line-height: 1.1;
        }
@media (max-width: 1440px) {
	.pillar1-wrapper .pillar1-title { font-size: clamp(2rem, 4vw, 3.1rem); }
	
}


        .pillar1-wrapper .pillar1-title span {
            color: var(--p1-teal);
        }

        /* --- Large Circle (20% Overhang) --- */
        .pillar1-wrapper .pillar1-image-container {
            position: relative;
            max-width: 350px; 
			width:30%;
            aspect-ratio: 1 / 1;
            z-index: 5;
            order: 2; /* Second on mobile */
            display: flex;
            justify-content: center;
        }



        .pillar1-wrapper .pillar1-large-circle {
            width: 100%;
            height: 100%;
            background-color: #ddd;
            border-radius: 50%;
            border: 10px solid var(--p1-white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transform: scale(1.3); /* Creates the top/bottom breakout */
            background-size: cover;
            background-position: center;
        }

@media (max-width: 1440px) {

	.pillar1-wrapper .pillar1-large-circle  { transform: scale(1.1); }
}

        /* --- Small Badges (50% Overhang) --- */
        .pillar1-wrapper .pillar1-badge-row {
            display: flex;
            gap: 15px;
            position: absolute;
            bottom: -60px; /* 50% of badge height */
            left: 0;
            order: 3; /* Third on mobile */
        }

        .pillar1-wrapper .pillar1-badge {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background-color: var(--p1-gray);
            color: var(--p1-white);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 0.7rem;
            font-weight: bold;
            padding: 10px;
            text-transform: uppercase;
            border: 4px solid var(--p1-white);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            box-sizing: border-box;
            flex-shrink: 0;
        }
		
        .pillar1-wrapper .pillar1-badge a{

            color: var(--p1-white);
            font-size: 0.7rem;
            font-weight: bold;
			text-decoration:none;
        }		
		

.pillar1-wrapper .pillar1-badge-purple { background-color: var(--p1-purple); }		
.pillar1-wrapper .pillar1-badge-navyblue { background-color: var(--p1-navyblue); }
.pillar1-wrapper .pillar1-badge-green { background-color: var(--p1-green); }
.pillar1-wrapper .pillar1-badge-blue { background-color: var(--p1-blue); }

        /* --- Responsive / Mobile Logic --- */
        @media (max-width: 900px) {
			
			
			
			.pillar1-wrapper {

            margin: 10px 0; /* Margin to accommodate the overhangs */
			}			
			
            .pillar1-wrapper .pillar1-banner {
                padding: 10px 5%;
                /* Large padding at bottom to make room for badges */
                padding-bottom: 120px; 
            }

            .pillar1-wrapper .pillar1-content {
                flex-direction: column;
                text-align: center;
				bottom: 0px;
            }

            .pillar1-wrapper .pillar1-image-container {
                display:none;
            }

            .pillar1-wrapper .pillar1-large-circle {
                transform: scale(1.2); /* Still breaks out 15-20% */
            }

            .pillar1-wrapper .pillar1-badge-row {
				position:relative;
                width: 100%;
                justify-content: center;
                flex-wrap: wrap; /* Allows stacking if screen is tiny */
                gap: 10px;
            }

            .pillar1-wrapper .pillar1-badge {
                width: 100px;
                height: 100px;
                font-size: 0.6rem;
            }
        }

/* Section 2: Text Intro */
    .pillar1-wrapper .pillar1-intro-section {
        padding: 80px 10% 40px;
        background-color: #ffffff;
    }

    .pillar1-wrapper .pillar1-heading-large {
        font-size: 2.2rem;
        color: #555;
        font-style: italic;
        margin-bottom: 20px;
        font-weight: 300;
    }

    .pillar1-wrapper .pillar1-body-text {
        color: #666;
        line-height: 1.6;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .pillar1-wrapper .pillar1-bold-italic {
        font-weight: bold;
        font-style: italic;
    }

    /* Section 3: The "Anything Goes" Blue Box */
    .pillar1-wrapper .pillar1-solution-box {
        background-color: #f0f8fb;
        padding: 60px 10%;
        display: flex;
        gap: 50px;
        align-items: center;
    }

    .pillar1-wrapper .pillar1-solution-image {
        flex: 1;
        min-width: 300px;
    }
    .pillar1-wrapper .pillar1-solution-image img{
        width:100%;
    }

    .pillar1-wrapper .pillar1-solution-text {
        flex: 1.2;
    }

    .pillar1-wrapper .pillar1-heading-medium {
        font-size: 1.8rem;
        color: #777;
        margin-bottom: 20px;
    }

    /* Section 4: Why Standard LMS Falls Short */
    .pillar1-wrapper .pillar1-fall-short-section {
        padding: 60px 10%;
        background-color: #ffffff;
    }

    .pillar1-wrapper .pillar1-list {
        list-style: none;
        padding: 0;
        margin: 30px 0;
    }

    .pillar1-wrapper .pillar1-list-item {
        margin-bottom: 20px;
        font-size: 1.1rem;
        color: #666;
        line-height: 1.5;
    }

    .pillar1-wrapper .pillar1-list-number {
        font-size: 1.5rem;
        font-weight: 800;
        color: #444;
        margin-right: 10px;
    }

    .pillar1-wrapper .pillar1-list-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: #555;
    }

    /* Mobile Adjustments */
    @media (max-width: 900px) {
        .pillar1-wrapper .pillar1-solution-box {
            flex-direction: column;
            padding: 40px 5%;
        }
        
        .pillar1-wrapper .pillar1-intro-section,
        .pillar1-wrapper .pillar1-fall-short-section {
            padding: 40px 5%;
        }

        .pillar1-wrapper .pillar1-heading-large {
            font-size: 1.8rem;
        }
    }

/* --- SECTION: THE TrainingToDo DIFFERENCE (Purple Box) --- */
    .pillar1-wrapper .pillar1-difference-section {
        background-color: var(--p1-purple, #6b2d91);
        padding: 60px 10%;
        display: flex;
        gap: 50px;
        align-items: center;
        color: #ffffff;
    }

    .pillar1-wrapper .pillar1-difference-text {
        flex: 1.2;
    }

    .pillar1-wrapper .pillar1-difference-text .pillar1-heading-medium,
    .pillar1-wrapper .pillar1-difference-text .pillar1-body-text {
        color: #ffffff; /* Override shared colors for purple background */
    }

    .pillar1-wrapper .pillar1-difference-image {
        flex: 1;
        min-width: 300px;
    }
	
    .pillar1-wrapper .pillar1-difference-image img{
        width:100%;
    }	

    .pillar1-wrapper .pillar1-placeholder-rect {
        width: 100%;
        aspect-ratio: 4 / 3;
        background-color: #eecbad; /* Placeholder for the woman on laptop image */
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
        border-radius: 4px;
    }

    /* --- SECTION: THREE COLUMN FEATURES --- */
    .pillar1-wrapper .pillar1-features-grid {
        padding: 80px 10%;
        background-color: #f9f7fa; /* Light grey/lavender tint */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .pillar1-wrapper .pillar1-feature-col {
        text-align: left;
    }

    .pillar1-wrapper .pillar1-feature-col img{
        max-width:100px;
    }
 

    .pillar1-wrapper .pillar1-feature-title {
        font-size: 1.4rem;
        font-weight: 800;
        color: #444;
        margin-bottom: 15px;
    }

    /* --- RESPONSIVE LOGIC --- */
    @media (max-width: 900px) {
        .pillar1-wrapper .pillar1-difference-section {
            flex-direction: column;
            padding: 40px 5%;
            text-align: center;
        }

        .pillar1-wrapper .pillar1-features-grid {
            grid-template-columns: 1fr;
            padding: 40px 5%;
        }

        .pillar1-wrapper .pillar1-feature-col {
            text-align: center;
        }
    }
	
	
	/* --- NEW SECTION: WHO BENEFITS (Image Left, Text Right) --- */
    .pillar1-wrapper .pillar1-benefits-section {
        padding: 80px 10%;
        background-color: #ffffff;
        display: flex;
        gap: 50px;
        align-items: flex-start; /* Aligns to top of text */
    }

    .pillar1-wrapper .pillar1-benefits-image {
        flex: 1;
        min-width: 300px;
    }
	
    .pillar1-wrapper .pillar1-benefits-image img{
        width:100%;
    }
	
    .pillar1-wrapper .pillar1-benefits-text {
        flex: 1.2;
    }

    /* Standardized Bullet List for Benefits */
    .pillar1-wrapper .pillar1-benefits-list {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }

    .pillar1-wrapper .pillar1-benefit-item {
        position: relative;
        padding-left: 20px;
        margin-bottom: 15px;
        color: #666;
        line-height: 1.5;
        font-size: 1.05rem;
    }

    /* Small dot for bullets */
    .pillar1-wrapper .pillar1-benefit-item::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #444;
        font-weight: bold;
    }

    .pillar1-wrapper .pillar1-benefit-name {
        font-weight: 800;
        color: #555;
    }

    /* --- NEW SECTION: BEYOND FEATURE LISTS (Light Blue Full Width) --- */
    .pillar1-wrapper .pillar1-beyond-section {
        background-color: #f0f8fb; /* Reusing light blue from "Anything Goes" section */
        padding: 60px 10%;
    }


    /* --- RESPONSIVE LOGIC --- */
    @media (max-width: 900px) {
        .pillar1-wrapper .pillar1-benefits-section {
            flex-direction: column;
            padding: 40px 5%;
        }

        .pillar1-wrapper .pillar1-benefits-image {
            order: 2; /* Image goes below text on mobile for this specific section */
        }

        .pillar1-wrapper .pillar1-beyond-section {
            padding: 40px 5%;
        }
    }

/* --- SECTION: GETTING STARTED & FORM --- */
    .pillar1-wrapper .pillar1-footer-section {
        padding: 80px 10%;
        display: flex;
        gap: 60px;
        background-color: #ffffff;
        align-items: flex-start;
    }

    .pillar1-wrapper .pillar1-footer-text {
        flex: 1.2;
    }

    .pillar1-wrapper .pillar1-form-container {
        flex: 1;
        min-width: 320px;
        background-color: #c5c5c5; /* Grey background from image */
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    /* Form Image Placeholder */
    .pillar1-wrapper .pillar1-form-image {
        width: 100%;

    }
	
    .pillar1-wrapper .pillar1-form-image img{
        width:100%;
    }	
	

    .pillar1-wrapper .pillar1-form-body {
        padding: 40px 30px;
        text-align: center;
    }

    .pillar1-wrapper .pillar1-form-title {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 25px;
        text-transform: uppercase;
        color: #333;
    }

    /* Form Fields */
    .pillar1-wrapper .pillar1-input {
        width: 100%;
        padding: 12px 15px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-family: inherit;
        box-sizing: border-box;
    }

    .pillar1-wrapper .pillar1-textarea {
        width: 100%;
        height: 120px;
        padding: 12px 15px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-family: inherit;
        resize: vertical;
        box-sizing: border-box;
    }

    .pillar1-wrapper .pillar1-submit-btn {
        width: 100%;
        padding: 15px;
        background-color: var(--p1-purple, #6b2d91);
        color: white;
        border: none;
        border-radius: 4px;
        font-weight: 800;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.3s;
    }

    .pillar1-wrapper .pillar1-submit-btn:hover {
        background-color: #4e1d6b;
    }

    .pillar1-wrapper .pillar1-form-disclaimer {
        font-size: 0.7rem;
        color: #666;
        margin-top: 15px;
        line-height: 1.3;
    }

    .pillar1-wrapper .pillar1-divider {
        width: 150px;
        height: 1px;
        background-color: #ccc;
        margin: 30px 0;
    }

    /* --- RESPONSIVE LOGIC --- */
    @media (max-width: 900px) {
        .pillar1-wrapper .pillar1-footer-section {
            flex-direction: column;
            padding: 40px 5%;
        }
        
        .pillar1-wrapper .pillar1-form-container {
            width: 100%;
        }
    }

/* --- SECTION: ACTION FOOTER (Dark Navy Bar) --- */
    .pillar1-wrapper .pillar1-action-banner {
        background-color: #2b2a54; /* Dark navy color from image */
        padding: 40px 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .pillar1-wrapper .pillar1-btn-outline {
        flex: 0 1 250px; /* Limits button width while remaining flexible */
        padding: 15px 25px;
        background-color: #ffffff;
        color: #2b2a54;
        text-decoration: none;
        text-align: center;
        border-radius: 50px; /* Rounded pill shape */
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        border: 2px solid #ffffff;
        transition: all 0.3s ease;
    }

    .pillar1-wrapper .pillar1-btn-outline:hover {
        background-color: transparent;
        color: #ffffff;
    }

    /* --- RESPONSIVE LOGIC --- */
    @media (max-width: 768px) {
        .pillar1-wrapper .pillar1-action-banner {
            flex-direction: column; /* Stacks buttons on mobile */
            padding: 40px 5%;
            gap: 15px;
        }

        .pillar1-wrapper .pillar1-btn-outline {
            width: 100%; /* Full width buttons on small screens */
            flex: none;
        }
    }

.subpage-header {
	--bf-navy: #2b2a54;
	--bf-white: #ffffff;
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding: 0;
	background-color: var(--bf-navy);
	color: var(--bf-white);
	padding: 40px 10%;	
	
}

        .subpage-header h1 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin: 0;
            font-weight: 800;
            line-height: 1.2;
        }


	.booking-form-wrapper, .content-page-wrapper, .april-form-box {
            --bf-navy: #2b2a54;
            --bf-white: #ffffff;
            --bf-grey-bg: #c5c5c5;
            --bf-text: #444444;
            --bf-purple: #6b2d91;
            --bf-error: #b00000;
            --bf-success: #2e9b4d;
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
        }


        .booking-form-wrapper .booking-form-container, .content-page-wrapper .content-page-container{
            display: flex;
            padding: 60px 10%;
            gap: 60px;
            align-items: flex-start;
            background-color: var(--bf-white);
        }

        .booking-form-wrapper .booking-form-text-area, .content-page-wrapper .content-page-text-area { flex: 1; }

        .booking-form-wrapper .booking-form-text-area h2, .content-page-wrapper .content-page-text-area h2  {
            font-size: 2.2rem;
            color: var(--bf-text);
            font-weight: 300;
            line-height: 1.3;
            margin-bottom: 30px;
        }
		
        .content-page-wrapper .content-page-text-area p  {
            padding-bottom:10px;
			padding-top:10px;
        }		

        .booking-form-wrapper .booking-form-list { list-style: none; padding: 0; }
        .booking-form-wrapper .booking-form-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 20px;
            font-size: 1.2rem;
            color: var(--bf-text);
        }
        .booking-form-wrapper .booking-form-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .booking-form-wrapper .booking-form-card {
            flex: 1;
            background-color: var(--bf-grey-bg);
            padding: 40px 30px;
            border-radius: 4px;
            max-width: 500px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .booking-form-wrapper .booking-form-card h3 {
            text-align: center;
            text-transform: uppercase;
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 30px;
            color: #333;
        }

        .booking-form-wrapper .booking-form-row { display: flex; gap: 15px; }

        .booking-form-wrapper .booking-form-input, 
        .booking-form-wrapper .booking-form-select,
		.booking-form-wrapper .booking-form-textarea
		{
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 1rem;
            font-family: inherit;
        }
		

		.booking-form-wrapper .booking-form-textarea
		{
            height:150px;
        }		

        .booking-form-wrapper .booking-form-select {
            background-color: white;
            color: #666;
            appearance: none; 
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M7%2010l5%205%205-5z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 20px;
        }
		
	
		

        .booking-form-wrapper .booking-form-submit {
            width: 100%;
            padding: 15px;
            background-color: var(--bf-navy);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .booking-form-wrapper .booking-form-submit:hover { background-color: var(--bf-purple); }

        .booking-form-wrapper .booking-form-error, .april-form-box .booking-form-error {
            color: var(--bf-error);
            background: #fff;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            border-left: 4px solid var(--bf-error);
        }

        .booking-form-wrapper .booking-form-success-msg, .april-form-box .booking-form-success-msg {
            text-align: center;
            padding: 20px 0;
        }

        .booking-form-wrapper .booking-form-success-icon, .april-form-box .booking-form-success-icon {
            font-size: 3rem;
            color: var(--bf-success);
            margin-bottom: 10px;
        }

        @media (max-width: 900px) {
            .booking-form-wrapper .booking-form-container, .content-page-wrapper .content-page-container { flex-direction: column; padding: 40px 5%; }
            .booking-form-wrapper .booking-form-card { max-width: 100%; width: 100%; }
        }
		

		.pricing-page-wrapper {
            --pp-blue: #0076bd;
            --pp-purple: #6b2d91;
            --pp-green: #9f2163;
            --pp-navy: #2b2a54;
            --pp-grey-bg: #c5c5c5;
            --pp-text: #444444;
            font-family: 'Arial', sans-serif;
            color: var(--pp-text);
            line-height: 2;
        }
	
		

        /* --- Intro Section --- */
        .pricing-page-wrapper .pricing-page-intro {
            padding: 60px 10% 40px;
        }

        .pricing-page-wrapper .pricing-page-title {
            font-size: 2.2rem;
            font-style: italic;
            font-weight: 300;
            color: #555;
            margin-bottom: 20px;
        }

        /* --- Pricing Grid --- */
        .pricing-page-wrapper .pricing-page-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 0 10% 60px;
        }

        .pricing-page-wrapper .pricing-page-card {
            display: flex;
            flex-direction: column;
            border-radius: 4px;
            overflow: hidden;
            background-color: #f9f9f9;
        }

        .pricing-page-wrapper .pricing-page-card-header {
            padding: 30px 20px;
            text-align: center;
            color: white;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .pricing-page-wrapper .pricing-page-card-header h2 {
            margin: 0;
            font-size: 1.6rem;
            line-height: 1.2;
        }

        .pricing-page-wrapper .pricing-page-card-header p {
            margin: 5px 0 0;
            font-weight: bold;
            font-size: 1rem;
        }

        .pricing-page-wrapper .pricing-page-card-body {
            padding: 15px 20px;
            flex-grow: 1;
			line-height: 1.7;
        }

        .pricing-page-wrapper .pricing-page-card-body ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .pricing-page-wrapper .pricing-page-price-box {
            text-align: center;
            font-size: 1.2rem;
			line-height: normal;
            font-weight: 800;
            margin-top: auto;
            padding: 20px;
            color: #333;
        }

        /* Specific Card Colors */
        .pricing-page-wrapper .pp-blue-header { background-color: var(--pp-blue); }
        .pricing-page-wrapper .pp-purple-header { background-color: var(--pp-purple); }
        .pricing-page-wrapper .pp-green-header { background-color: var(--pp-green); }

        .pricing-page-wrapper .pp-blue-body { background-color: #e6f3fb; }
        .pricing-page-wrapper .pp-purple-body { background-color: #f2ebf7; }
        .pricing-page-wrapper .pp-green-body { background-color: #ffe2f1; }

        /* --- Form & Contact Section --- */
        .pricing-page-wrapper .pricing-page-contact-container {
            display: flex;
            padding: 60px 10%;
            gap: 60px;
            align-items: flex-start;
        }

        .pricing-page-wrapper .pricing-page-contact-text { flex: 1.2; }

        .pricing-page-wrapper .pricing-page-form-card {
            flex: 1;
            background-color: var(--pp-grey-bg);
            padding: 40px 30px;
            border-radius: 4px;
            max-width: 500px;
        }

        .pricing-page-wrapper .pricing-page-form-card h3 {
            text-align: center;
            text-transform: uppercase;
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .pricing-page-wrapper .pricing-page-input, 
        .pricing-page-wrapper .pricing-page-textarea,
		.pricing-page-wrapper .pricing-page-select		{
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            font-family: inherit;
        }
		
		
        .pricing-page-wrapper .pricing-page-select {
            background-color: white;
            color: #666;
            appearance: none; 
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M7%2010l5%205%205-5z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 20px;
        }		
		
		
	

		
        .pricing-page-wrapper .pricing-page-submit {
            width: 100%;
            padding: 15px;
            background-color: var(--pp-navy);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .pricing-page-wrapper .pricing-page-submit:hover { background-color: var(--pp-purple); }		
		
		
		
		

        /* --- Responsive --- */
        @media (max-width: 900px) {
            .pricing-page-wrapper .pricing-page-grid { grid-template-columns: 1fr; }
            .pricing-page-wrapper .pricing-page-contact-container { flex-direction: column; }
        }


/* --- PILLAR 2 SHARED VARIABLES --- */
        .pillar2-wrapper {
            --p2-navy: #2b2a54;
            --p2-purple: #6b2d91;
            --p2-blue-tint: #f0f8fb;
            --p2-text-dark: #333333;
            --p2-text-grey: #555555;
            --p2-white: #ffffff;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--p2-text-dark);
        }

        /* --- INTRO SECTION (WHITE) --- */
        .pillar2-wrapper .pillar2-intro-section {
            padding: 80px 10%;
            background-color: var(--p2-white);
        }

        .pillar2-wrapper .pillar2-heading-large {
            font-size: 2.2rem;
            font-style: italic;
            font-weight: 300;
            color: var(--p2-text-grey);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .pillar2-wrapper .pillar2-body-text {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--p2-text-grey);
        }

        .pillar2-wrapper .pillar2-highlight-quote {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--p2-text-dark);
            margin-top: 30px;
        }

        /* --- CHAMPION SECTION (LIGHT BLUE TINT) --- */
        .pillar2-wrapper .pillar2-champion-section {
            background-color: var(--p2-blue-tint);
            padding: 80px 10%;
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .pillar2-wrapper .pillar2-image-container {
            flex: 1;
            max-width: 450px;
        }

        .pillar2-wrapper .pillar2-placeholder-img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .pillar2-wrapper .pillar2-text-container {
            flex: 1.2;
        }

        .pillar2-wrapper .pillar2-heading-medium {
            font-size: 1.8rem;
            color: var(--p2-text-grey);
            margin-bottom: 20px;
            font-weight: 400;
        }

        /* --- RESPONSIVE LOGIC --- */
        @media (max-width: 900px) {
            .pillar2-wrapper .pillar2-intro-section,
            .pillar2-wrapper .pillar2-champion-section {
                padding: 40px 5%;
            }

            .pillar2-wrapper .pillar2-champion-section {
                flex-direction: column;
                text-align: center;
            }

            .pillar2-wrapper .pillar2-image-container {
                max-width: 100%;
                order: 2; /* Image goes below text on mobile */
            }
        }

/* --- SECTION: AFFORDABLE TRAINING LOOKS LIKE --- */
    .pillar2-wrapper .pillar2-details-section {
        padding: 80px 10%;
        background-color: var(--p2-white);
    }

    .pillar2-wrapper .pillar2-section-intro {
        margin-bottom: 50px;
    }

    .pillar2-wrapper .pillar2-heading-small {
        font-size: 1.7rem;
        color: var(--p2-text-grey);
        margin-bottom: 10px;
        font-weight: bold;
    }

    /* --- NUMBERED LIST STYLES --- */
    .pillar2-wrapper .pillar2-feature-list {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .pillar2-wrapper .pillar2-feature-item {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    /* Diamond Icon Logic */
    .pillar2-wrapper .pillar2-diamond {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: rotate(45deg);
        border-radius: 4px;
        margin-top: 5px;
    }

    .pillar2-wrapper .pillar2-diamond span {
        transform: rotate(-45deg);
        color: white;
        font-weight: 800;
        font-size: 1.5rem;
    }

.pillar2-wrapper .pillar2-scenario {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    margin-top: -2px;
    padding: 0px 10px 4px 12px;
}

.pillar2-wrapper .pillar2-scenario span {
        color: white;
        font-weight: 800;
        font-size: 1.3rem;
    }



    /* Specific Diamond Colors from Mockup */
    .pillar2-wrapper .p2-d1 { background-color: #004a80; } /* Navy Blue */
    .pillar2-wrapper .p2-d2 { background-color: #6b2d91; } /* Purple */
    .pillar2-wrapper .p2-d3 { background-color: #f9b233; } /* Gold/Yellow */
    .pillar2-wrapper .p2-d4 { background-color: #9f2163; } /* Green */
    .pillar2-wrapper .p2-d5 { background-color: #f15a24; } /* Orange */

    .pillar2-wrapper .pillar2-feature-content h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0 0 10px 0;
        color: var(--p2-text-dark);
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
        .pillar2-wrapper .pillar2-details-section {
            padding: 40px 5%;
        }
        
        .pillar2-wrapper .pillar2-feature-item {
            flex-direction: column;
            gap: 15px;
        }

        .pillar2-wrapper .pillar2-diamond {
            margin-left: 10px; /* Offset for rotated look */
        }
    }

/* --- SECTION: SCENARIOS (NAVY HEADER + LIGHT BLUE TINT BODY) --- */
    .pillar2-wrapper .pillar2-scenarios-header {
        background-color: var(--p2-navy);
        color: white;
        padding: 50px 10%;
        text-align: center;
        position: relative;
    }

    .pillar2-wrapper .pillar2-scenarios-header h2 {
            font-size: 2rem;
    	margin: 10px;
    	font-weight: bold;
    }

    /* Triangles under the navy header */
    .pillar2-wrapper .pillar2-triangle-row {
        display: flex;
        justify-content: space-around;
        padding: 0 10%;
        background-color: var(--p2-navy);
    }

    .pillar2-wrapper .pillar2-triangle {
        width: 0;
        height: 0;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-top: 30px solid var(--p2-navy);
        margin-bottom: -30px;
        z-index: 10;
    }

    .pillar2-wrapper .pillar2-scenarios-body {
        background-color: var(--p2-blue-tint);
        padding: 80px 10%;
    }

    /* Three Column Grid */
    .pillar2-wrapper .pillar2-scenario-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .pillar2-wrapper .pillar2-scenario-card {
        display: flex;
        flex-direction: column;
    }

    .pillar2-wrapper .pillar2-scenario-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 4px;
        margin-bottom: 20px;
        background-color: #ccc;
    }

    .pillar2-wrapper .pillar2-scenario-card h3 {
        
        margin-bottom: 15px;
		    text-align: center;
    		line-height: 1.4;
    		color: #444;
    }

    /* --- SECTION: BEYOND AFFORDABLE --- */
    .pillar2-wrapper .pillar2-beyond-section {
        padding: 80px 10%;
        background-color: var(--p2-white);
    }

    .pillar2-wrapper .pillar2-numbered-list {
        list-style: none;
        padding: 0;
        margin-top: 30px;
    }

    .pillar2-wrapper .pillar2-numbered-list li {
        margin-bottom: 20px;
        font-size: 1.1rem;
        color: var(--p2-text-grey);
    }

    .pillar2-wrapper .pillar2-numbered-list strong {
        color: var(--p2-text-dark);
        font-size: 1.15rem;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
        .pillar2-wrapper .pillar2-scenario-grid {
            grid-template-columns: 1fr;
        }
        
        .pillar2-wrapper .pillar2-triangle-row {
            display: none; /* Simplify for mobile */
        }
    }

/* --- SECTION: PLATFORM CRITERIA (NAVY BACKGROUND) --- */
    .pillar2-wrapper .pillar2-criteria-section {
        background-color: var(--p2-navy);
        padding: 80px 10%;
        color: white;
        display: flex;
        gap: 60px;
        align-items: anchor-center;
    }

    .pillar2-wrapper .pillar2-criteria-content {
        flex: 1.2;
    }

    .pillar2-wrapper .pillar2-criteria-content h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        line-height: 1.2;
        color: white;
    }

    .pillar2-wrapper .pillar2-criteria-list {
        list-style: none;
        padding: 0;
    }

    .pillar2-wrapper .pillar2-criteria-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 20px;
        font-size: 1.1rem;
        line-height: 1.5;
    }

    /* Custom bullet point */
    .pillar2-wrapper .pillar2-criteria-list li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: white;
        font-weight: bold;
    }

    .pillar2-wrapper .pillar2-criteria-list strong {
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .pillar2-wrapper .pillar2-criteria-image-container {
        flex: 1;
    }

    .pillar2-wrapper .pillar2-criteria-img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
        .pillar2-wrapper .pillar2-criteria-section {
            flex-direction: column;
            padding: 40px 5%;
			align-items: flex-start;
        }

        .pillar2-wrapper .pillar2-criteria-image-container {
            width: 100%;
            order: 2;
        }
    }

	/* --- SECTION: FAQ (LIGHT BLUE TINT) --- */
    .pillar2-wrapper .pillar2-faq-section {
        background-color: var(--p2-blue-tint);
        padding: 80px 10%;
    }

    .pillar2-wrapper .pillar2-faq-container {
        margin: 0 auto;
    }

    .pillar2-wrapper .pillar2-faq-header {
        font-size: 1.8rem;
        color: var(--p2-text-grey);
        margin-bottom: 40px;
        font-weight: 400;
        text-align: left;
    }

    .pillar2-wrapper .pillar2-faq-item {
        margin-bottom: 40px;
    }

    /* Styling for Questions */
    .pillar2-wrapper .pillar2-faq-question {
        display: flex;
        gap: 10px;
        font-weight: 700;
        color: var(--p2-text-dark);
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .pillar2-wrapper .pillar2-faq-letter-q {
        color: var(--p2-text-grey);
    }

    /* Styling for Answers */
    .pillar2-wrapper .pillar2-faq-answer {
        display: flex;
        gap: 10px;
        color: var(--p2-text-grey);
        line-height: 1.6;
        font-size: 1.1rem;
    }

.pillar2-faq-answer p { margin: 0px; }

    .pillar2-wrapper .pillar2-faq-letter-a {
        font-weight: 700;
        color: var(--p2-text-dark);
    }

    /* Dotted separator between items */
    .pillar2-wrapper .pillar2-faq-divider {
        border: none;
        border-top: 1px dashed #ccc;
        margin: 40px auto;
        width: 60%;
    }

    @media (max-width: 768px) {
        .pillar2-wrapper .pillar2-faq-section {
            padding: 40px 5%;
        }
    }

/* --- SECTION: GETTING STARTED (WHITE BG) --- */
    .pillar2-wrapper .pillar2-final-section {
        display: flex;
        padding: 80px 10%;
        gap: 60px;
        align-items: flex-start;
        background-color: var(--p2-white);
    }

    .pillar2-wrapper .pillar2-final-content {
        flex: 1.2;
    }

    .pillar2-wrapper .pillar2-final-content h2 {
        font-size: 2rem;
        color: var(--p2-text-dark);
        margin-bottom: 30px;
    }

    /* Bolded paragraph starters for the "Path Forward" */
    .pillar2-wrapper .pillar2-step-text {
        margin-bottom: 25px;
        color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
    }

    .pillar2-wrapper .pillar2-step-text strong {
        color: var(--p2-text-dark);
    }

    /* --- FORM CARD (GREY BG) --- */
    .pillar2-wrapper .pillar2-form-card {
        flex: 1;
        background-color: #c5c5c5; /* Matching the grey from previous forms */
        border-radius: 4px;
        overflow: hidden;
        min-width: 320px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .pillar2-wrapper .pillar2-form-image {
        width: 100%;
        object-fit: cover;
        display: block;
    }
	
    .pillar2-wrapper .pillar2-form-image img{
        width: 100%;

    }	

    .pillar2-wrapper .pillar2-form-inner {
        padding: 30px;
    }

    .pillar2-wrapper .pillar2-form-inner h3 {
        text-align: center;
        text-transform: uppercase;
        font-size: 1.8rem;
        margin-bottom: 25px;
        color: #333;
    }

    /* Input Styling */
    .pillar2-wrapper .pillar2-input, 
    .pillar2-wrapper .pillar2-textarea {
        width: 100%;
        padding: 12px 15px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
        font-family: inherit;
        font-size: 0.95rem;
    }

    .pillar2-wrapper .pillar2-textarea {
        height: 150px;
        resize: vertical;
    }

    .pillar2-wrapper .pillar2-submit {
        width: 100%;
        padding: 15px;
        background-color: #00406b; /* Dark Navy for the button */
        color: white;
        border: none;
        border-radius: 4px;
        font-weight: 800;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .pillar2-wrapper .pillar2-submit:hover {
        background-color: var(--p2-purple);
    }

    .pillar2-wrapper .pillar2-error-msg {
        background: #fff;
        color: #b00000;
        padding: 10px;
        margin-bottom: 15px;
        border-left: 4px solid #b00000;
        font-size: 0.85rem;
    }

    @media (max-width: 900px) {
        .pillar2-wrapper .pillar2-final-section {
            flex-direction: column;
            padding: 40px 5%;
        }
        .pillar2-wrapper .pillar2-form-card {
            max-width: 100%;
        }
    }


.article-page-title {
	font-size: 2.2rem;
    font-style: italic;
	font-weight: 300;
	color: #555;
	margin-bottom: 20px;
}

.article-page-text {
	padding: 60px 10% 40px;
	color: #666;
	line-height: 1.6;
	font-size: 1.1rem;
	margin: revert;
	margin-bottom: 20px;
}

.article-page-text a { font-weight: bold; color: #0379c3; }
.article-page-text a:hover { color: #55a647; text-decoration: none; }

.article-page-text ul, ul li, ol, ol li, li, h1, h2, h3, p { margin: revert; padding: revert; }

.p-list { text-indent: -25px; margin-left: 25px; }



.lms-list li {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(0,0,0,.08);
    }

.lms-list li:last-child {
      border-bottom: none;
    }

.lms-icon {
      flex-shrink: 0;
      width: 48px; height: 48px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-top: 0.5em;
    }

.lms-icon svg {
      width: 30px; height: 30px;
    }

.lms-navy { background: #004a80; fill: #fff; }
.lms-purple { background: #6b2d91; fill: #fff; }
.lms-amber  { background: #c98a1a; fill: #fff; }
.lms-green  { background: #9f2163; fill: #fff; }
.lms-orange { background: #f15a24; fill: #fff; }

.lms-text {
	color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.lms-text span {
	color: #555;
	font-weight: 900;
    text-transform: uppercase;
}







/*-- beyond section  --*/

.beyond-header {
	padding: 70px 10% 50px 10%;
    color: #666;
    text-align: center;
}

.beyond-rule {
      width: 48px;
      height: 2px;

      margin: 28px 0;
      border: none;
    }

.beyond-body {
      font-size: 1.1rem;
    line-height: 1.7;

    }

.beyond-body strong {

      font-weight: 500;
    }

.beyond-card {
      background: var(--surface);
      border-radius: 14px;
      padding: 28px 24px 30px;
      border: 1px solid #edeae3;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

.beyond-card:nth-child(1) .beyond-circle { background: #004a80; }
.beyond-card:nth-child(2) .beyond-circle { background: #6b2d91; }
.beyond-card:nth-child(3) .beyond-circle { background: #c98a1a; }
.beyond-card:nth-child(4) .beyond-circle { background: #39b54a; }
.beyond-card:nth-child(5) .beyond-circle { background: #f15a24; }



.beyond-card h3 {
      font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0px;
    color: #666;
    }

.beyond-card:nth-child(1) h3 em { color: #004a80; }
.beyond-card:nth-child(2) h3 em { color: #6b2d91; }
.beyond-card:nth-child(3) h3 em { color: #c98a1a; }
.beyond-card:nth-child(4) h3 em { color: #39b54a; }
.beyond-card:nth-child(5) h3 em { color: #f15a24; }

.beyond-card p {
      font-size: 1.1rem;
    line-height: 1.7;
	color: #666;
	margin-bottom: 0px;
    }

.beyond-circle {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0px;
      flex-shrink: 0;
	align-self: center;
    }

.beyond-grid-section {
          padding: 0px 8% 60px 8%;
    
    }

    .beyond-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
    }

    @media (max-width: 1000px) {
      .beyond-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 520px) {
      .beyond-grid { grid-template-columns: 1fr; }
    }




/* --- Lightbox Overlay --- */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    #lightbox.active {
      display: flex;
    }

    #lightbox video {
      max-width: 90vw;
      max-height: 85vh;
      border-radius: 8px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    }

    #lightbox .close-btn {
      position: absolute;
      top: 20px;
      right: 28px;
      font-size: 2.5rem;
      color: white;
      cursor: pointer;
      line-height: 1;
      user-select: none;
      transition: opacity 0.2s;
    }

    #lightbox .close-btn:hover {
      opacity: 0.7;
    }

    /* --- Clickable Image --- */
    .video-trigger {
      cursor: pointer;
      display: inline-block;
      position: relative;
    }

    .video-trigger img {
          display: block;
    
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    filter: brightness(40%);
    }

    .video-trigger:hover img {
      transform: scale(1.03);
      box-shadow: 0 6px 24px rgba(0,0,0,0.3);
    }

    /* Play icon overlay on the image */
    .video-trigger::after {
      content: "▶";
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: white;
      text-shadow: 0 2px 8px rgba(0,0,0,0.6);
      pointer-events: none;
    }



 .april-body {
      font-family: 'Source Sans 3';
      background: #f7f7f5;
      color: #1a1a1a;
      min-height: 100vh;
          padding: 2rem 16px 5rem;
    }

    .april-page-wrapper {
      max-width: 1024px;
      margin: 0 auto;
    }

    /* Header */
    .april-header {
      text-align: center;
      margin-bottom: 36px;
    }

    .april-header h1 {
              
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    margin-top: -8px;
    line-height: 1.3;
    }

    .april-header p {
      /*-- font-size: 15px; --*/
      color: #555;
      line-height: 1.6;
      max-width: 480px;
      margin: 0 auto;
    }

    /* Option Cards */
    .april-option-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 32px;
    }

    .april-card {
      background: #fff;
      border: 1px solid #e2e2e2;
      border-radius: 10px;
      padding: 18px 16px;
      cursor: pointer;
      transition: border-color 0.2s, box-shadow 0.2s;
		text-align: center;
    }

    .april-card:hover {
      border-color: #bbb;
      box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    }

    .april-card-icon {
      font-size: 3rem;
      margin-bottom: 10px;
      display: block;
    }

    .april-card h3 {
      font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.4;
    text-transform: uppercase;
    }

    .april-card p {
      /*-- font-size: 12px; --*/
      color: #fff;
      line-height: 1.5;
		    font-weight: 500;
    }

.april-option-cards a { text-decoration: none; }
.april-card a { text-decoration: none; }
.april-card h3 a { text-decoration: none; }

    /* Bottom grid */
    .april-bottom-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: start;
    }

    /* Form box */
    .april-form-box {
      background: #fff;
      border: 1px solid #e2e2e2;
      border-radius: 10px;
      padding: 24px;
    }

    .april-form-box h2 {
      /*-- font-size: 15px; --*/
      font-weight: 700;
      margin-bottom: 18px;
      color: #111;
    }

    .april-form-group {
      margin-bottom: 14px;
    }

    .april-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 14px;
    }

    .april-form-box label {
      display: block;
      /*-- font-size: 10.5px; --*/
      font-weight: 700;
      letter-spacing: 0.06em;
      color: #444;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .april-form-box input,
    .april-form-box textarea {
      width: 100%;
      border: 1px solid #d8d8d8;
      border-radius: 6px;
      padding: 9px 12px;
      font-size: 1rem;
      font-family: 'Lato', sans-serif;
      color: #333;
      background: #fff;
      outline: none;
      transition: border-color 0.2s;
    }

    .april-form-box input::placeholder,
    .april-form-box textarea::placeholder {
      color: #bbb;
    }

    .april-form-box input:focus,
    .april-form-box textarea:focus {
      border-color: #888;
    }

    .april-form-box textarea {
      resize: vertical;
      min-height: 90px;
    }

    .april-submit-btn {
      width: 100%;
      background: #111;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 12px;
      /*-- font-size: 14px; --*/
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      cursor: pointer;
      margin-top: 4px;
      transition: background 0.2s;
    }

    .april-submit-btn:hover {
      background: #333;
    }

    .april-form-note {
      /*-- font-size: 11px; --*/
      color: #999;
      text-align: center;
      margin-top: 10px;
      line-height: 1.5;
    }

    /* Right side */
    .april-right-side {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .april-contact-block {
      background: #fff;
      border: 1px solid #e2e2e2;
      border-radius: 10px;
      padding: 16px 18px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .april-contact-icon {
      font-size: 3rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .april-contact-block-label {
      /*-- font-size: 10px; --*/
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #777;
      margin-bottom: 3px;
    }

    .april-contact-block a {
      /*-- font-size: 14px; --*/
      font-weight: 700;
      color: #2a6fbd;
      text-decoration: none;
    }

    .april-contact-block a:hover {
      text-decoration: underline;
    }

    .april-contact-block-sub {
      /*-- font-size: 12px; --*/
      color: #888;
      margin-top: 2px;
    }

    /* Why box */
    .april-why-box {
      background: #f0efe9;
      border-radius: 10px;
      padding: 18px 20px;
    }

    .april-why-box h3 {
      /*-- font-size: 11px; --*/
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #555;
      margin-bottom: 12px;
    }

    .april-why-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .april-why-list li {
      /*-- font-size: 12.5px; --*/
      color: #333;
      line-height: 1.5;
      display: flex;
      /*-- gap: 8px; --*/
      align-items: flex-start;
    }

    .april-check {
      color: #4a9e6b;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    @media (max-width: 580px) {
      .april-option-cards { grid-template-columns: 1fr; }
      .april-bottom-grid { grid-template-columns: 1fr; }
      .april-form-row { grid-template-columns: 1fr; }
    }

.articlespan {
	font-size: 60%;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.1rem;
    line-height: 0.1rem;
	    font-style: italic;
}