.about-custom-section {
	padding: 80px 0;
	padding-bottom: 80px;
}
.about-custom-section-inner {
	transition: transform 0.4s ease;
}
.about-custom-section-inner:hover {
	transform: translateY(-5px);
}
.about-custom-section-img{
	margin: 0 200px;
}
.about-custom-section-img img {
	width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-custom-section-top{
	text-align: center;
	margin-top: 0;
}
.about-custom-section-top h1{
	text-align: center;
	font-size: 40px;
	position: relative;
	margin-bottom: 40px;
	font-weight: 600;
	color: #221f20;
	letter-spacing: 1px;
	padding-bottom: 10px;
	margin-top: 40px;
}
.about-custom-section-top h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 140px;
    height: 2px;
    background-color: #f5821f;
    transform: translate(-50%, 0);
}
.about-custom-section-top p {
	color: #333;
    font-size: 18px;
    margin: 15px 0;
    line-height: 1.7;
    letter-spacing: 1px;
}
.about-custom-section-top p b {
	color: #00509d;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 400;
}
.features-section {
	background-color: #f1f5f9;
	padding: 60px 0;
}
.features-section h2 {
	text-align: center;
	margin-bottom: 40px;
	font-size: 32px;
}
.features .feature-box {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	text-align: center;
	padding: 30px 20px;
	margin-bottom: 30px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features .feature-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.features .feature-box img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin-bottom: 20px;
}
.features .feature-box h3 {
	font-size: 20px;
    color: #252525;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none;
    margin-bottom: 10px;
}
.features .feature-box p {
	font-size: 15px;
	color: #555;
}
/* Section 2: Who Can Become a Partner */
.who-can-partner {
	padding: 60px 0;
}
.who-text h3 {
	font-size: 28px;
	margin-bottom: 20px;
}	
.who-text ol {
	padding-left: 25px;
}
.who-text li {
	font-size: 16px;
	padding: 10px 0;
	border-bottom: 1px dashed #ccc;
	list-style: decimal;
}
.who-text li strong {
	color: #0b5ed7;
}
.who-text li:last-child {
	border-bottom: none;
}
.who-img img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Section 3: Channel Partners */
.globe-section {
	padding: 60px 0;
	padding-bottom: 100px;
	background-color: #eef4fa;
}
.globe-section-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.globe-section-content h3 {
	font-size: 26px;
	margin-bottom: 15px;
}
.globe-section-content p {
	font-size: 16px;
	color: #444;
	margin-bottom: 25px;
}
.globe-section-content ul {
	margin-left: 20px;
    margin-bottom: 20px;
}
.globe-section-content ul li{
	font-size: 16px;
    list-style: disc;
    margin-bottom: 10px;
}
.globe-section-content a {
	display: inline-block;
	padding: 10px 20px;
	background-color: #0b5ed7;
	color: #fff;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}
.globe-section-content a:hover {
	background-color: #084298;
}
/* Responsive Enhancements */
@media (max-width: 768px) {
	.about-custom-section-img{
		margin: 0px;
	}
	.about-custom-section{
		padding: 40px 15px;
	}
	.about-custom-section-top h1{
		font-size: 21px;
	}
	.about-custom-section-top p{
		font-size: 16px;
	}
	.about-custom-section-top p b {
		font-size: 18px;
	}
	.features .feature-box,
	.who-img img,
	.globe-section-image img {
		margin-bottom: 20px;
	}
	.who-text,
	.globe-section-content {
		margin-bottom: 30px;
	}
	.features-section h2,
	.who-text h2,
	.globe-section-content h3 {
		text-align: center;
	}
}