body:not(.home) {
    background: #112437;
	color: #fff;
}
.page-template-about p {
	margin-bottom: 1rem;
	margin-block-start: 1em;
}
body:not(.home) .site {
	position: relative;
}
body:not(.home) .site-main {
	background: linear-gradient(90deg, #112437 0%, #112437 50%, #AF4852 100%);
	padding-top: 246px;
}
.section-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.section-title {
	font-weight: 700;
	margin: 0 0 40px;
}
.section-title.h1 {
	font-size: 62px;
	line-height: 72px;
}
.section-title.h2 {
	font-size: 52px;
	line-height: 62px;
}

/* ====== Banner Section ======== */
.about-banner {
	padding: 80px 0;
	color: #fff;
}
.about-banner .section-row {
	align-items: center;
}
.container {
	max-width: 1280px;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 auto;
}
.about-banner .about-title {
	font-weight: 700;
	font-size: 62px;
	line-height: 72px;
	margin: 0;
}
.about-banner .about-sub-title {
	font-weight: 500;
	font-style: Italic;
	font-size: 30px;
	line-height: 1.4;
	margin-top: 10px;
}
.about-banner .about-description {
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5;
	text-align: justify;
}
.about-description > *:first-child {
	margin-top: 0;
}
.about-description > *:last-child {
	margin-bottom: 0;
}
/* ====== Team Section ======== */
.leadership-section {
	padding: 80px 0;
	color: #fff;
	text-align: center;
}
.leadership-section .section-title {
	margin-bottom: 100px;
}
.team-image {
	position: relative;
	padding-bottom: 100%;
	margin-bottom: 35px;
}
.team-image img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
}
.leadership-section .team-name {
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5;
	text-align: center;
	margin: 0 0 10px;
}
.leadership-section .team-position {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	margin: 0;
}
/* ====== FAQs Section ======== */
.faq-section {
    padding: 100px 0;
    color: #ffffff;
}
.faq-main-title {
	font-weight: 700;
	font-size: 52px;
	line-height: 1.2;
	margin: 0;
}
.faq-section .section-row {
	
}
.faq-list {
    display: flex;
	flex-direction: column;
	gap: 20px;
}
.faq-item {
	padding: 1px; 
	background: linear-gradient(180deg, rgba(32, 81, 89, 0) 0%, #205159 100%) border-box;
	border: 1px solid transparent;
	display: block;
}
.faq-item .item-wrap {
	background: rgba(30, 39, 57, 0.8);
	padding: 24px;
}
.faq-item.active .item-wrap {
	background: linear-gradient(270deg, rgba(204, 204, 204, 0.8) 0%, rgba(102, 102, 102, 0.8) 45.81%, rgba(40, 44, 53, 0.8) 100%);
}
.faq-item .faq-question {
	font-weight: 300;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 10px;
    cursor: pointer;
    font-size: 16px;
	line-height: 1.5;
    text-align: left;
    transition: 0.3s;
	border-radius: 0;
	padding: 0;
	outline: none;
}
.faq-answer {
	display: none;
}
.answer-content {
    line-height: 1.5;
    color: #fff;
	margin-top: 16px;
	font-weight: 300;
	max-width: 550px;
    padding-right: 50px;
}
.answer-content > *:first-child {
	margin-top: 0;
}
.answer-content > *:last-child {
	margin-bottom: 0;
}
.faq-icon {
    position: relative;
    width: 16px;
	min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-icon span {
    position: absolute;
    background-color: #ffffff; 
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}
.line-horizontal {
    width: 100%;
    height: 1px;
}
.line-vertical {
    width: 1px;
    height: 100%;
}
.active .line-vertical {
    transform: rotate(90deg);
    opacity: 0;
}

/* ====== Accordion Section ======== */
.accordion-section {
    padding: 0 0 70px;
    color: #ffffff;
}
.accordion-list {
    display: flex;
	flex-direction: column;
	gap: 30px;
}
.accordion-item {
    position: relative;
    border: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(102, 102, 102, 0.3) 100%);
    z-index: 1;
	display: block;
    overflow: hidden;
    transition: 0.3s;
}
.accordion-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 4px; 
    padding: 1px;
    background: linear-gradient(180deg, rgba(32, 81, 89, 0) 0%, #205159 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude; 
    pointer-events: none;
    z-index: -1;
}
.accordion-item .item-wrap {
	padding: 30px;
}
.accordion-item.active {
	background: 
        linear-gradient(270deg, rgba(192, 120, 127, 0.8) 0%, rgba(235, 95, 102, 0.8) 32.4%, rgba(7, 56, 85, 0.8) 65%, rgba(38, 103, 121, 0.8) 100%) padding-box,
        linear-gradient(180deg, rgba(32, 81, 89, 0) 0%, #205159 100%) border-box;
}
.accordion-item .item-wrap {
	
}
.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 10px;
    padding: 0;
    cursor: pointer;
    font-size: 34px;
	line-height: 1.4;
    text-align: left;
	font-weight: 500;
	outline: none;
	border-radius: 0;
}
.accordion-content {
	display: none;
	margin-top: 20px;
}
.content-inner {
	font-weight: 600;
	font-size: 20px;
	line-height: 36px;
}
.content-inner ul {
	margin-left: 0;
	padding-left: 22px;
}
.content-inner > *:first-child {
	margin-top: 0;
}
.content-inner > *:last-child {
	margin-bottom: 0;
}
.about-contact-section {
	background: #112437;
	padding-top: 80px;
}
.about-contact-section .s6-heading {
	font-size: 30px;
	line-height: 1.1;
	margin: 0 0 100px;
}
@media(min-width:992px) {
	body:not(.home) .site-header {
		position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: none;
        z-index: 99;
	}
	body:not(.home) .header-wrap,
	body:not(.home) .hs1-nav {
		transition: all .3s ease;
	}
	body:not(.home) .fixed-header .header-wrap {
	    transform: translateY(-100%);
	}
	body:not(.home) .hs1-nav {
		position: static;
		transition: all .3s ease;
	}
	body:not(.home) .fixed-header .hs1-nav {
	    transform: translateY(-65px);
	}
	#primary-menu > li {
		backdrop-filter: blur(10px);
	}
}
@media(max-width:1199.98px) {
	.about-banner .about-title {
		font-size: 34px;
		line-height: 1.2;
		margin-bottom: 24px;
	}
	.about-banner .about-sub-title {
		font-size: 18px;
		line-height: 26px;
		margin-bottom: 16px;
	}
	.about-banner .about-description {
		font-size: 16px;
		line-height: 26px;
	}
	.accordion-trigger {
		font-size: 24px;
	}
	.leadership-section .section-title,
	.faq-main-title	{
		font-size: 40px;
		line-height: 1.2;
	}
	.accordion-item .item-wrap {
		padding: 24px;
	}
	.about-contact-section {
		padding-top: 0;
	}
	.accordion-section {
		padding-bottom: 40px;
	}
	.about-banner,
	.leadership-section,
	.faq-section {
		padding: 40px 0;
	}
}
@media(max-width:991.98px) {
	body:not(.home) .site-header{
		position: sticky;
		top: 0;
		width: 100%;
		z-index: 9;
		background: rgba(17, 36, 55, .85);
	}
	body:not(.home) .site-header a.custom-logo-link {
		max-width: 208px;
		margin: 0 auto;
		padding: 15px 0;
	}
	body:not(.home) .site-main {
		padding-top: 50px;
	}
	.custom-swiper-pagination {
		margin-top: 25px;
	}
	.leadership-section .custom-swiper-pagination .swiper-pagination-bullet {
		width: 15px;
		height: 15px;
		position: relative;
		background: none;
		margin: 0 3px;
		opacity: 1;
	}
	.custom-swiper-pagination .swiper-pagination-bullet:after {
		content: '';
		position: absolute;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: #55B1B54D;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.custom-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
		background: #55B1B54D;
		border-radius: 50%;
	}
	.custom-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
		width: 7.5px;
		height: 7.5px;
		background: #55B1B5;
	}
}
@media(max-width:767.98px) {
	.section-row {
		grid-template-columns: 1fr;
	}
	.about-banner .section-row {
		gap: 50px;
	}
	.about-banner .about-content {
		order: 2;
	}
	.about-banner .about-title {
		font-size: 34px;
		line-height: 1.2;
		margin-bottom: 24px;
		text-align: center;
	}
	.about-banner .about-sub-title {
		font-weight: 600;
		font-size: 18px;
		line-height: 26px;
		text-align: center;
		margin-bottom: 16px;
		font-style: normal;
	}
	.about-banner .about-description {
		font-weight: 300;
		font-size: 16px;
		line-height: 26px;
		text-align: left;
	}
	.about-banner {
		padding: 40px 0;
	}
	.accordion-trigger {
		font-size: 18px;
		line-height: 1.4;
	}
	.accordion-item .item-wrap {
		padding: 12px;
	}
	.accordion-list {
		gap: 20px;
	}
	.content-inner {
		font-size: 16px;
		line-height: 1.4;
		font-weight: 300;
	}
	.accordion-section {
		padding-bottom: 30px;
	}
	.leadership-section {
		padding: 30px 0 40px;
	}
	.leadership-section .container {
		padding-left: 0;
		padding-right: 0;
	}
	.leadership-section .section-title {
		font-weight: 700;
		font-size: 26px;
		line-height: 1.2;
		text-align: center;
		margin-bottom: 50px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.leadership-section .swiper {
		padding-left: 18%;
		padding-right: 18%;
	}
	.leadership-section .team-name {
		font-size: 17px;
		margin: 0 0 6px;
	}
	.leadership-section .team-position {
		font-size: 11px;
	}
	.faq-main-title {
		font-weight: 600;
		font-size: 26px;
		line-height: 1.4;
		margin-bottom: 20px;
		text-align: center;
	}
	.faq-item .faq-question {
		font-weight: 500;
		font-size: 16px;
		line-height: 1.2;
	}
	.faq-item .item-wrap {
		padding: 16px;
	}
	.faq-item.active .item-wrap {
		background: linear-gradient(270deg, rgba(192, 120, 127, 0.8) 0%, rgba(235, 95, 102, 0.8) 32.4%, rgba(7, 56, 85, 0.8) 65%, rgba(38, 103, 121, 0.8) 100%);
	}
	.faq-icon {
		width: 12px;
		min-width: 12px;
		height: 12px;
	}
	.faq-list {
		gap: 12px;
	}
	.faq-section {
		padding: 30px 0;
	}
	.about-contact-section {
		background: none;
		padding-top: 0;
	}
	.about-contact-section .s6-heading {
		font-size: 26px;
		line-height: 1.2;
		margin-bottom: 40px;
	}
	body:not(.home) {
		background: linear-gradient(90deg, #112437 0%, #112437 50%, #AF4852 100%);
	}
	body:not(.home) .site-main {
		background: none;
		padding-top: 15px;;
	}
}