.marquee {
	position: relative;
	display: flex;
    align-items: stretch;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    padding: 0;
    flex-grow: 1;
}
.marquee li {
    width: 500px;
    flex-grow: 1;
    margin: 0;
    margin-right: calc(50px + 2.5vw);
    text-align: left;
}
.marquee li img {
    max-width: 200px;
    max-height: 125px;
    object-fit: contain;

}
.marquee-content {
	flex-shrink: 0;
	display: flex;
    align-items: start;
	list-style: none;
	text-align: center;
	margin: 0;
	padding: 0;
}

@keyframes scroll {
	from {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
}
	to {
		-webkit-transform: translateX(-100%);
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
		transform: translateX(-100%);
}
}

@media (prefers-reduced-motion: reduce) {
	.marquee-content {
		animation-play-state: paused !important;
	}
}
.marquee-content {
	-webkit-animation: scroll 80s linear infinite;
	animation: scroll 80s linear infinite;
}

/* Reverse animation */
.marquee-reverse .marquee-content {
	animation-direction: reverse;
}
.marquee-fit-content {
	max-width: fit-content;
}
.marquee-pos-absolute .marquee-content:last-child {
	position: absolute;
	top: 0;
	left: 0;
}
.marquee-pos-absolute .marquee-content:last-child {
	animation-name: scroll-abs;
}


.news-hero {
    position: relative;
    padding: calc(var(--nav-height) + 8rem) 0 8rem 0;
    display: flex;
    align-items: center;
}
.news-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}
.news-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--page-bg-color), rgba(var(--info-color-rgb), 0.5));
    z-index: -1;
}
.news-hero .news-hero-container {
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto;
}
.news-hero .news-hero-text {
    width: 800px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}
.news-hero .news-hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--nav-text-color);
    font-family: var(--secondary-font);
    font-weight: 800;
}
.news-hero .news-hero-text h1.hero-header {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--secondary-color);
    font-family: var(--primary-font);
}
.news-hero .news-hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--nav-text-color);
}
.case-studies {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 40px 0 100px 0;
    display: flex;
    flex-wrap: wrap;
}
.case-studies .story {
    background-color: var(--page-bg-color-alt);
    display: flex;
    flex-direction: column;
    column-gap: 40px;
    row-gap: 10px;
    align-items: stretch;
    width: 33.333%;
    max-width: 100%;
    padding: 1.25rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.case-studies .story a:has(img) {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 300px;
    flex-grow: 1;
}
.case-studies .story a:has(img) img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.case-studies .story-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.case-studies .story-content h5 {
    font-family: var(--secondary-font);
    color: #141414;
    font-size: calc(1.75rem + 1.5vw);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}
.case-studies .story-content h6 {
    font-family: var(--secondary-font);
    color: #141414;
    font-size: calc(1rem + 0.25vw);
    font-weight: 600;
    margin-bottom: 10px;
}
.case-studies .story-content p {
    font-family: var(--primary-font);
    color: #141414;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0px;
}
.case-studies .story-content p:last-of-type {
    margin-bottom: 20px;
}
.case-studies .story-content p.date {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
}
.case-studies button#loadMoreNews {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 400;
    border: 2px solid var(--primary-color);
    outline: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.case-studies button#loadMoreNews span {
    position: relative;
    height: 16px;
    width: 16px;
    display: block;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.case-studies button#loadMoreNews span::before {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;

}
.case-studies button#loadMoreNews span::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.case-studies button#loadMoreNews:hover {
    background-color: var(--primary-color);
    color: white;
}
.case-studies button#loadMoreNews:hover span::before,
.case-studies button#loadMoreNews:hover span::after {
    background-color: white;
}
.case-studies button#loadMoreNews:hover span {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
@media (max-width: 1200px) {
    .case-studies .story {
        width: 50%;
    }
}
@media (max-width: 850px) {
    .case-studies .story {
        width: 100%;
    }
}


.story-hero {
    width: 100%;
    padding-top: var(--nav-height);
    background: linear-gradient(to top, var(--page-bg-color), rgba(var(--info-color-rgb), 1));
}
.story-hero .story-hero-container {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 75px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.story-hero .hero-content {
    width: 600px;
    max-width: 100%;
}
.story-hero .hero-content a {
    display: block;
    width: max-content;
    max-width: 100%;
    text-align: center;
    color: white;
    background-color: var(--info-hover-color);
    margin-bottom: 15px;
    padding: 5px 10px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 500;
}
.story-hero .hero-content h1 {
    font-family: var(--secondary-font);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0px;
    width: 600px;
    max-width: 100%;
}
.story-hero .hero-content h6 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0px;
    width: 600px;
    max-width: 100%;
}
.story-hero .hero-content p {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0px;
    width: 600px;
    max-width: 100%;
}
.story-hero .tags {
    margin-top: 20px;
    margin-bottom: 0px;
    width: 600px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.story-hero .tags span {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    padding: 5px 15px;
    background-color: var(--secondary-color);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.story-area {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 75px 0;
    display: flex;
    justify-content: space-between;
    column-gap: 75px;
}
.story-area.news {
    width: var(--container-width);
    position: relative;
}
.story-area .story-content {
    width: 600px;
    flex-grow: 1;
    max-width: 900px;
}
.story-area .other-stories {
    background-color: #ffffff;
    width: 500px;
    max-width: 100%;
    height: max-content;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.story-area.news .other-stories {
    position: sticky;
    top: calc(var(--nav-height) + 30px);
    align-self: flex-start;
    max-height: fit-content;
}
.story-area .story-content h1 {
    color: #141414;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.story-area .story-content h2 {
    color: #141414;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.story-area .story-content h3 {
    color: #141414;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.story-area .story-content h4 {
    color: #141414;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.story-area .story-content h5 {
    color: #141414;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.story-area .story-content h6 {
    color: #141414;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.story-area .story-content p {
    color: #141414;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 7px;
}
.story-area .story-content img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.story-area .other-stories h2 {
    font-family: var(--secondary-font);
    color: #141414;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.story-area .other-stories .story {
    display: flex;
    align-items: stretch;
    width: 100%;
    background-color: #f9f9f9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.story-area .other-stories .story .image-link {
    position: relative;
    padding: 10px 0 10px 10px;
    width: 175px;
    max-width: 100%;
    flex-shrink: 0;
}
.story-area .other-stories .story img {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 0;
    bottom: 10px;
    width: calc(100% - 10px);
    height: calc(100% - 20px);
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.story-area .other-stories .story .small-story-content {
    padding: 10px 15px;
    flex-grow: 1;
}
.story-area .other-stories .story h3 {
    color: #141414;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;    
    
}
.story-area .other-stories .story p {
    color: #141414;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 0;
}
.story-area .other-stories .story a.read-more {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-top: 10px;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    margin-left: auto;
}
.story-area .other-stories .story strong {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}
.story-area .other-stories .view-more {
    display: block;
    width: 100%;
    text-align: center;
    border: 2px solid var(--secondary-color);
    color: white;
    background-color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 5px 10px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}
.story-area .other-stories .view-more:hover {
    background-color: transparent;
    color: var(--secondary-color);
}
@media (max-width: 1400px) {
    .story-area {
        flex-direction: column;
        gap: 50px;
    }
    .story-area .story-content {
        width: 100%;
        margin: auto;
    }
    .story-area .other-stories {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .story-area .other-stories h2 {
        width: 100%;
        margin-bottom: 20px;
    }
    .story-area .other-stories .story {
        width: 20%;
        flex-grow: 1;
        max-width: 100%;
        flex-direction: column;
    }
    .story-area .other-stories .story .image-link {
        height: 200px;
        width: calc(100% - 10px);
    }
    .story-area .other-stories .story .small-story-content {
        flex-grow: 1;
        display: grid;
    }
    .story-area .other-stories .story .small-story-content a {
        margin-top: auto;
    }
}
@media (max-width: 1080px) {
    .story-area .other-stories .story {
        width: 40%;
    }
}
@media (max-width: 650px) {
    .story-area .other-stories .story {
        width: 100%;
    }
}

.sitemap-container {
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding: 75px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.sitemap-container .block {
    width: 300px;
    max-width: 100%;
    flex-grow: 1;
    background-color: var(--page-bg-color-alt);
    padding: 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.sitemap-container .block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.sitemap-container .block:not(.pages) {
    width: 100%;
}
.sitemap-container .block ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sitemap-container .block ul li {
    width: 600px;
    max-width: 100%;
    flex-grow: 1;
}
.sitemap-container .block.pages ul li {
    width: 300px;
    max-width: 100%;
    flex-grow: 1;
}
.sitemap-container .block ul li a i {
    width: 40px;
    height: 40px;
    background-color: rgba(var(--primary-color-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
}
.sitemap-container .block ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    color: #141414;
    font-family: var(--primary-font);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 10px 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}
.sitemap-container .block.pages ul li a {
    padding: 10px 15px 10px 10px;
    font-size: 1rem;
}
.sitemap-container .block ul li a:hover {
    background-color: var(--primary-color);
}
.sitemap-container .block.pages ul li a:hover {
    background-color: var(--primary-color);
    color: white;
}
.sitemap-container .block.pages ul li a:hover i {
    background-color: white;
    color: var(--primary-color);
}


.file-uploader {
    width: 100%;
    margin-top: 0.5rem;
}
.file-uploader input[type="file"] {
    display: none;
}
.file-uploader .file-drop-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    border: 2px dashed var(--info-color);
    background-color: var(--page-bg-color-alt);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0;
}
.file-uploader .file-drop-zone:hover {
    border-color: var(--secondary-color);
    background-color: rgba(var(--secondary-color-rgb), 0.05);
}
.file-uploader .file-drop-zone.dragover {
    border-color: var(--secondary-color);
    background-color: rgba(var(--secondary-color-rgb), 0.1);
    border-style: solid;
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
}
.file-uploader .file-drop-zone i {
    font-size: 3rem;
    color: var(--info-color);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.file-uploader .file-drop-zone:hover i,
.file-uploader .file-drop-zone.dragover i {
    color: var(--secondary-color);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}
.file-uploader .file-drop-zone .file-message {
    font-size: 1.1rem;
    color: var(--page-text-color);
    font-weight: 500;
    text-align: center;
}
.file-uploader .file-drop-zone .file-name {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
    display: none;
}
.file-uploader .file-drop-zone .file-size {
    font-size: 0.9rem;
    color: var(--page-text-color-alt);
    font-weight: 400;
    text-align: center;
    display: none;
}
.file-uploader .file-drop-zone.has-file .file-name,
.file-uploader .file-drop-zone.has-file .file-size {
    display: block;
}
.file-uploader .file-drop-zone.has-file {
    border-color: var(--secondary-color);
    background-color: rgba(var(--secondary-color-rgb), 0.05);
}
.file-uploader .file-drop-zone.has-file i {
    color: var(--secondary-color);
}
.captcha-border {
	width: 298px;
	height: 72px;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}



/* Testimonials Carousel Styling */
.testimonials-carousel-wrapper {
    background-color: var(--nav-text-color);
    margin: 2rem 0;
}
.testimonials-carousel-wrapper .carousel {
    padding: 3rem 0;
}
.testimonials-carousel-wrapper .carousel-item {
    min-height: 400px;
    padding: 2rem 0;
}
.testimonials-carousel-wrapper .testimonial-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.testimonials-carousel-wrapper .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.testimonials-carousel-wrapper .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}
.testimonials-carousel-wrapper .placeholder-image i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}
.testimonials-carousel-wrapper .testimonial-content {
    padding: 2rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonials-carousel-wrapper .testimonial-content blockquote {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonials-carousel-wrapper .quote-icon {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.2;
}
.testimonials-carousel-wrapper .testimonial-text {
    width: 600px;
    max-width: 100%;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--nav-bg-color);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonials-carousel-wrapper .blockquote-footer {
    padding-top: 1rem;
}
.testimonials-carousel-wrapper .testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
    display: block;
    margin-bottom: 0.25rem;
}
.testimonials-carousel-wrapper .testimonial-position {
    font-size: 1rem;
    color: var(--info-color);
    font-weight: 400;
    display: block;
}
.blockquote-footer::before {
    content: unset;
}
@media (max-width: 768px) {
    .testimonials-carousel-wrapper .carousel-item {
        /* remove unsupported auto value; default min-height is 0 */
        min-height: 0;
    }
    .testimonials-carousel-wrapper .testimonial-image {
        height: 300px;
        margin-bottom: 2rem;
    }
    .testimonials-carousel-wrapper .testimonial-content {
        padding: 1rem;
    }
    .testimonials-carousel-wrapper .testimonial-text {
        font-size: 1rem;
    }
    .testimonials-carousel-wrapper .carousel-control-prev,
    .testimonials-carousel-wrapper .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    .testimonials-carousel-wrapper .carousel-control-prev {
        left: 10px;
    }
    .testimonials-carousel-wrapper .carousel-control-next {
        right: 10px;
    }
}

.cta h4 {
    font-family: var(--secondary-font);
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    font-weight: 700;
}
.cta p {
    font-size: 1.1rem;
    font-weight: 500;
}
.cta .btn {
    font-size: 1.1rem;
    padding: 10px 20px;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
    border-radius: 50rem;
    margin: 5px 0;
}

/* Section spacing */
.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
}

/* Grid Layout */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Tile Styling */
.service-tile {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    padding: 2.5rem;
    background: var(--page-bg-color-alt);
    transition: all 0.3s ease;
    position: relative;
    -webkit-border-radius: var(--br-def);
    -moz-border-radius: var(--br-def);
    -ms-border-radius: var(--br-def);
    -o-border-radius: var(--br-def);
    border-radius: var(--br-def);
}

.service-tile h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-tile p {
    color: #555;
    /* margin-bottom: 0; */
}

/* Hover Effect */
.service-tile:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

/* Highlight Tile */
.service-tile.highlight {
    background: var(--primary-color);
}

/* Wider Tile */
.service-tile.wide {
    grid-column: span 3;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-tile.wide {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    .service-tile.wide {
        grid-column: span 1;
        text-align: left;
    }
}

/* Intro Section */
.intro-section {
    background-color: var(--page-bg-color-alt);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.intro-title {
    color: var(--primary-color);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 500px;
}

.intro-lead {
    font-family: var(--secondary-font);
    font-size: 1.3rem;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 0.5rem;
    max-width: 800px;
}

.intro-body {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 700px;
}

.intro-footnote {
    font-size: 1.1rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(var(--info-color-rgb), 0.2);
    padding-top: 3rem;
}

/* Credentials Section */
.credentials-section {
    background-color: var(--page-bg-color-alt); /* neutral, clean background */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
}

.credential-item {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Bullet accent */
.credential-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color); /* brand accent color */
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1rem 0;
    }
}

/* Team Section */
.team-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.team-card {
    background: var(--page-bg-color-alt);
    border: 1px solid rgba(var(--page-text-color-rgb), 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    -webkit-border-radius: var(--br-def);
    -moz-border-radius: var(--br-def);
    -ms-border-radius: var(--br-def);
    -o-border-radius: var(--br-def);
    border-radius: var(--br-def);
}


.team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #e5e5e5;
}

.team-content {
    padding: 2rem;
}

.team-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    font-size: 0.9rem;
    color: var(--info-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Training Section */
.training-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.training-card {
    display: block;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(var(--page-text-color-rgb), 0.1);
    background: var(--page-bg-color-alt);
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-border-radius: var(--br-def);
    -moz-border-radius: var(--br-def);
    -ms-border-radius: var(--br-def);
    -o-border-radius: var(--br-def);
    border-radius: var(--br-def);
}

.training-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.training-date {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.training-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #0a0a0a;
    line-height: 1.4;
}

/* Insights Section */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
}

.insight-card {
    color: var(--page-text-color-alt);
    display: block;
    padding: 1.5rem 1rem;
    border-left: 4px solid var(--primary-color);
    background: var(--page-bg-color-alt);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    -webkit-border-radius: var(--br-def);
    -moz-border-radius: var(--br-def);
    -ms-border-radius: var(--br-def);
    -o-border-radius: var(--br-def);
    border-radius: var(--br-def);
}

.insight-card:hover {
    background: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .training-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }
}