/**
 * CompanyDetail Component Styles
 * 
 * Styles for company detail page sections
 */

/* ========================================
   Company Header Banner
   ======================================== */
.company-header-banner {
	background-color: #4CAF50;
	padding: 12px 0;
	width: 100%;
}

.company-header-banner-text {
	color: #ffffff;
	font-family: var(--font-medium, 'Raleway-Medium', sans-serif);
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	text-align: center;
}

.company-header-banner-subtitle {
	margin-left: 8px;
}

/* ========================================
   Company Hero Section
   ======================================== */
.company-hero-section {
	position: relative;
	width: 100%;
	min-height: 600px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
}

.company-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.company-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.company-hero-content {
	position: relative;
	width: 100%;
	z-index: 3;
	padding-bottom: 60px;
	text-align: center;
}

.company-hero-logo {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}

.company-hero-logo-img {
	width: auto;
	height: 113px;
	object-fit: contain;
}

.company-hero-title {
	color: #ffffff;
	font-family: var(--font-bold, 'Raleway-Bold', sans-serif);
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Company Intro Section
   ======================================== */
.company-intro-section {
	padding: 50px 0 100px 0;
	background: #ffffff;
	overflow: hidden;
}

.company-intro-section h2 {
	margin-bottom: 60px;
}

.company-intro-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.company-intro-image-wrapper {
	position: relative;
	flex: 1;
	max-width: 640px;
}

.company-intro-image {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 8px;
}

.company-intro-button {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background-color: var(--darkBlue, #002c5f);
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 4px;
	font-family: var(--font-medium, 'Raleway-Medium', sans-serif);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.company-intro-button:hover {
	background-color: var(--lightBlue, #A3DBE8);
	color: var(--darkBlue, #002c5f);
}

.company-intro-content {
	flex: 1;
	max-width: 630px;
}

.company-intro-heading {
	color: var(--darkBlue, #002c5f);
	font-family: var(--font-bold, 'Raleway-Bold', sans-serif);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 30px 0;
}

.company-intro-paragraph {
	color: #454545;
	font-family: var(--font-medium, 'Raleway-Medium', sans-serif);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	margin: 0;
}

/* ========================================
   Company COO Quote Section
   ======================================== */
.company-coo-quote-section {
	padding: 100px 0 0 0;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 740px;
	/* Fallback color */
}

.company-coo-quote-section .container {
	position: relative;
	z-index: 2;
}

.company-coo-quote-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(163, 219, 232, .89);
	z-index: 1;
}

.company-coo-quote-profile-image {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 400px;
	height: 400px;
	opacity: 0.1;
	z-index: 1;
	pointer-events: none;
}

.company-coo-quote-profile-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.company-coo-quote-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 60px;
	position: relative;
	z-index: 2;
	margin-bottom: 100px;
}

.company-coo-quote-left {
	flex: 0 0 auto;
	max-width: 420px;
}

.company-coo-quote-heading {
	color: var(--darkBlue, #002c5f);
	font-family: var(--font-bold, 'Raleway-Bold', sans-serif);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.company-coo-quote-right {
	flex: 1;
	max-width: 570px;
}

.company-coo-quote-text {
	color: #454545;
	font-family: var(--font-regular);
	font-size: 20px;
	font-weight: 500;
	line-height: 26px;
	margin: 0 0 30px 0;
	border: none;
	padding: 0;
}

.company-coo-quote-author {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.company-coo-quote-name {
	color: #002C5F;
	font-family: var(--font-bold, 'Raleway-Bold', sans-serif);
	font-size: 22px;
	font-weight: 700;
	margin: 0;
}

.company-coo-quote-position {
	color: #002C5F;
	font-family: var(--font-medium, 'Raleway-Medium', sans-serif);
	font-size: 17px;
	font-weight: 500;
	margin: 0;
}

/* ========================================
   Company Highlights (Inside COO Quote Section)
   ======================================== */
.company-highlights-wrapper {
	position: relative;
	z-index: 2;
	margin-top: 106px;

}

.company-highlights-large-text {
	text-align: right;
	font-size: 140px;
	line-height: 1;
	font-weight: 900;
	color: rgba(255, 255, 255, .4);
	font-family: var(--font-bold, 'Raleway-Bold', sans-serif);
	text-transform: uppercase;
	letter-spacing: 8px;
	z-index: 1;
	pointer-events: none;
	white-space: nowrap;
	display: block;
	margin-bottom: -21px;
}

.company-highlights-grid-wrapper {
	background-color: rgba(255, 255, 255, .33);
	border-top: 1px solid #ffffff;
}

.company-highlights-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	position: relative;
	z-index: 2;
}

/* 3-column layout */
.company-highlights-grid.has-3-items {
	grid-template-columns: repeat(3, 1fr);
}

/* 4-column layout (default) */
.company-highlights-grid.has-4-items {
	grid-template-columns: repeat(4, 1fr);
}

.company-highlight-item {
	display: flex;
	flex-direction: column;
	gap: 34px;
	padding: 40px 50px 40px 0px;
	border-right: 1px solid #ffffff;
	min-height: 244px;
	justify-content: center;
}

.company-highlights-grid.has-3-items .company-highlight-item:not(:first-child) {
	padding: 40px 50px 40px 80px;
}

/* Remove border from last item */
.company-highlight-item:last-child {
	border-right: none;
}

/* For 3-column layout: remove border from 3rd item */
.company-highlights-grid.has-3-items .company-highlight-item:nth-child(3) {
	border-right: none;
}

.company-highlight-icon {
	width: 58px;
	height: 58px;
	color: var(--darkBlue, #002c5f);
	display: flex;
	align-items: center;
	justify-content: center;
}

.company-highlight-number {
	color: var(--darkBlue, #002c5f);
	font-family: var(--font-regular);
	font-size: 60px;
	font-weight: 400;
	line-height: 1;
}

.company-highlight-title {
	color: var(--darkBlue, #002c5f);
	font-family: var(--font-bold, 'Raleway-Bold', sans-serif);
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}

.company-highlight-description {
	color: #454545;
	font-family: var(--font-medium, 'Raleway-Medium', sans-serif);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	margin: 0;
}

/* ========================================
   Company Services Section
   ======================================== */
.company-services-section {
	position: relative;
	width: 100%;
	min-height: 600px;
	overflow: hidden;
}

.company-services-swiper {
	width: 100%;
	height: 100%;
	min-height: 600px;
}

.company-services-swiper .swiper-slide {
	position: relative;
	min-height: 600px;
}

.company-services-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.company-services-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.company-services-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
	z-index: 2;
	pointer-events: none;
}

.company-services-swiper .container {
	position: relative;
	z-index: 3;
	height: 100%;
	min-height: 600px;
	padding: 0;
}

.company-services-content {
	position: relative;
	padding: 70px 60px 45px 60px;
	height: 100%;
	min-height: 600px;
	display: flex;
	flex-direction: column;
}

.company-services-navigation {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	position: absolute;
	top: 70px;
	right: 60px;
	z-index: 5;
	pointer-events: none;
}

.company-services-navigation .company-services-nav {
	pointer-events: all;
}

.company-services-nav {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background-color: rgb(217 217 217 / 22%);
	border: 1px solid rgba(255, 255, 255, 0.28);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--darkBlue, #002c5f);
}

.company-services-nav img {
	width: 26px;
}

.company-services-nav-next img {
	transform: rotate(180deg);
}

.company-services-nav svg {
	width: 20px;
	height: 20px;
}

.company-services-left {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 660px;
}

.company-services-label {
	color: #A3DBE8;
	font-family: var(--font-bold);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 20px 0;
	display: block;
}

.company-services-title {
	color: #ffffff;
	font-family: var(--font-bold);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 25px 0;
}

.company-services-description {
	color: #ffffff;
	font-family: var(--font-regular);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	margin: 0 0 80px 0;
	max-width: 745px;
}


.company-services-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 0;
	justify-content: space-between;
}

.company-service-item {

	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	color: #ffffff;
	min-width: 300px;
	padding-top: 20px;
}

.company-service-item.active {
	position: relative;
}

.company-service-number {
	color: #ffffff;
	font-family: (--font-medium);
	font-size: 14px;
	font-weight: 500;
	min-width: 30px;
	display: block;
	margin-bottom: 5px;
}

.company-service-title {
	color: #ffffff;
	font-family: (--font-medium);
	font-size: 16px;
	font-weight: 500;
	margin: 0;
	line-height: 1.4;
}

/* Progress Bar for Service Items */
.company-service-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.3);
	z-index: 2;
}

.company-service-progress-bar {
	position: absolute;
	bottom: -1px;
	left: 0;
	height: 3px;
	width: 0%;
	background-color: var(--lightBlue, #A3DBE8);
	will-change: width;
	opacity: 1;
	visibility: visible;
}

.company-services-swiper {
	border-radius: 15px;
	overflow: hidden;
	margin: 115px 0;
}

.company-contact-description {
	color: #454545;
	font-family: var(--font-medium, 'Raleway-Medium', sans-serif);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	margin: 0 0 22px 0;
}

/* ========================================
   Company Contact Section
   ======================================== */
.company-contact-section {
	padding: 100px 0;
	background-color: #E4EDF1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.company-contact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.company-contact-wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	z-index: 2;
}

.company-contact-left {
	flex: 0 1 auto;
	max-width: 500px;
}

.company-contact-logo {
	margin-bottom: 30px;
}

.company-contact-logo-img {
	max-width: 88px;
	height: auto;
	display: block;
}

.company-contact-heading {
	color: var(--darkBlue, #002c5f);
	font-family: var(--font-bold, 'Raleway-Bold', sans-serif);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 22px 0;
}

.company-contact-details {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin: 40px 0;
}

.company-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.company-contact-icon {
	width: 24px;
	height: 24px;
	color: var(--darkBlue, #002c5f);
	flex-shrink: 0;
}

.company-contact-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.company-contact-text {
	color: #454545;
	font-family: var(--font-medium);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	margin: 0;
}

.company-contact-link {
	color: #454545;
	text-decoration: none;
	transition: all 0.3s ease;
}

.company-contact-link:hover {
	transform: translateY(-5px);
	color: #454545;
}

.company-contact-item:last-child .company-contact-link {
	text-decoration: underline;
}

.company-contact-social {
	display: flex;
	gap: 20px;
}

.company-contact-social-link {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .6);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.company-contact-social-link img {
	width: 20px;
}

.company-contact-social-link:hover {
	background-color: var(--lightBlue, #A3DBE8);
	color: var(--darkBlue, #002c5f);
	transform: scale(1.1);
}


/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1400px) {
	.company-highlights-large-text {
		font-size: 150px;
	}

	.company-intro-heading,
	.company-coo-quote-heading,
	.company-contact-heading {
		font-size: 42px;
	}



}

@media (max-width: 1200px) {
	.company-hero-section {
		min-height: 550px;
	}



	.company-hero-logo-img {
		height: 90px;
	}

	.company-intro-wrapper,
	.company-coo-quote-wrapper,
	.company-contact-wrapper {
		gap: 40px;
	}

	.company-highlights-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0 30px;
	}

	.company-highlight-item {
		padding: 30px 30px 30px 0;
	}

	/* Remove border from every 2nd item in 2-column layout */
	/* .company-highlights-grid .company-highlight-item:nth-child(2n) {
		border-right: none;
	} */
	.company-highlights-grid.has-3-items .company-highlight-item:not(:first-child) {
		padding: 40px 50px 40px 20px;
	}

	.company-highlights-large-text {
		font-size: 120px;
	}


	.company-service-item {
		min-width: 250px;
	}

	.company-coo-quote-profile-image {
		width: 300px;
		height: 300px;
	}

	.company-highlights-grid.has-4-items {
		grid-template-columns: repeat(2, 1fr);
	}

	.company-highlight-number {
		font-size: 45px;
	}
}

@media (max-width: 992px) {
	.company-hero-section {
		min-height: 500px;
	}



	.company-hero-logo-img {
		height: 80px;
	}

	.company-hero-content {
		padding-bottom: 40px;
	}

	.company-intro-section {
		padding: 50px 0 80px 0;
	}

	.company-intro-wrapper,
	.company-coo-quote-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.company-intro-image-wrapper,
	.company-intro-content,
	.company-coo-quote-left,
	.company-coo-quote-right {
		max-width: 100%;
	}

	.company-intro-heading,
	.company-coo-quote-heading,
	.company-contact-heading {
		font-size: 38px;
	}

	.company-highlights-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.company-highlight-item {
		padding: 25px 20px 25px 0;
	}

	/* Remove border from every 2nd item in 2-column layout */
	.company-highlights-grid .company-highlight-item:nth-child(2n) {
		border-right: none;
	}

	.company-services-left {
		max-width: 100%;
	}


	.company-services-content {
		padding: 60px 40px 40px 40px;
	}

	.company-services-navigation {
		top: 60px;
		right: 40px;
	}

	.company-services-list {
		flex-wrap: wrap;
		gap: 10px;
	}

	.company-service-item {
		min-width: calc(50% - 5px);
		flex: 0 0 calc(50% - 5px);
	}

	.company-contact-wrapper {
		flex-direction: column;
	}

	.company-contact-left {
		max-width: 100%;
	}

	.company-coo-quote-profile-image {
		width: 250px;
		height: 250px;
	}

}

@media (max-width: 768px) {
	.company-hero-section {
		min-height: 450px;
	}

	.company-hero-content {
		padding-bottom: 30px;
	}

	.company-hero-logo {
		margin-bottom: 30px;
	}

	.company-hero-title {
		padding: 0 20px;
	}

	.company-hero-logo-img {
		height: 60px;
	}

	.company-intro-section,
	.company-coo-quote-section,
	.company-contact-section {
		padding: 60px 0;
	}

	.company-intro-section {
		padding: 50px 0 60px 0;
	}

	.company-intro-wrapper {
		gap: 30px;
	}

	.company-intro-section h2 {
		margin-bottom: 40px;
	}

	.company-intro-paragraph {
		font-size: 15px;
		margin-bottom: 20px;
	}

	.company-intro-button {
		bottom: 15px;
		left: 15px;
		padding: 10px 20px;
		font-size: 13px;
	}

	.company-coo-quote-section {
		min-height: auto;
		padding-bottom: 60px;
	}

	.company-coo-quote-wrapper {
		margin-bottom: 60px;
		gap: 30px;
	}

	.company-coo-quote-profile-image {
		display: none;
	}

	.company-highlights-wrapper {
		margin-top: 60px;
	}

	.company-intro-heading,
	.company-coo-quote-heading,
	.company-contact-heading {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.company-coo-quote-text {
		font-size: 18px;
		line-height: 24px;
	}

	.company-highlights-large-text {
		font-size: 80px;
		letter-spacing: 4px;
		margin-bottom: -15px;
	}

	.company-highlights-grid {
		/* grid-template-columns: 1fr; */
		gap: 20px;
	}

	.company-highlight-item {
		padding: 25px 0;
		border-right: none;
		border-bottom: 1px solid #ffffff;
	}


	.company-services-swiper {
		margin: 60px 0;
		border-radius: 0;
	}

	.company-services-section,
	.company-services-swiper,
	.company-services-swiper .swiper-slide {
		min-height: 500px;
	}

	.company-services-section .container {
		min-height: 500px;
		padding: 0 15px;
	}

	.company-services-content {
		min-height: 500px;
		padding: 40px 20px 30px 20px;
	}

	.company-services-navigation {
		top: 20px;
		right: 20px;
		gap: 8px;
	}

	.company-services-nav {
		width: 48px;
		height: 48px;
	}

	.company-services-nav img {
		width: 22px;
	}

	.company-services-left {
		max-width: 100%;
		padding-right: 0;
		margin-bottom: 30px;
		min-height: auto;
	}

	.company-services-label {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.company-services-title {
		margin-bottom: 20px;
	}

	.company-services-description {
		font-size: 14px;
		margin-bottom: 40px;
		max-width: 100%;
	}

	.company-services-list {
		flex-direction: column;
		gap: 15px;
		width: 100%;
	}

	.company-service-item {
		min-width: 100%;
		padding: 15px 0;
	}

	.company-service-number,
	.company-service-title {
		font-size: 15px;
	}

	.company-contact-logo {
		margin-bottom: 25px;
	}

	.company-contact-logo-img {
		max-width: 70px;
	}

	.company-contact-heading {
		margin-bottom: 15px;
	}

	.company-contact-description {
		margin-bottom: 25px;
		font-size: 15px;
	}

	.company-contact-details {
		gap: 20px;
		margin: 30px 0;
	}

	.company-contact-item {
		gap: 12px;
	}

	.company-contact-icon {
		width: 20px;
		height: 20px;
		flex-shrink: 0;
	}

	.company-contact-icon img {
		width: 100%;
		height: auto;
	}

	.company-contact-text {
		font-size: 15px;
	}

	.company-contact-social {
		gap: 15px;
		margin-top: 30px;
	}

	.company-contact-social-link {
		width: 50px;
		height: 50px;
	}

	.company-contact-social-link img {
		width: 18px;
	}
}

/* Medium devices (tablets portrait) */
@media (max-width: 700px) {
	.company-services-list {
		flex-wrap: wrap;
	}

	.company-service-item {
		min-width: calc(50% - 8px);
		flex: 0 0 calc(50% - 8px);
	}

	.company-highlights-grid.has-3-items {
		grid-template-columns: repeat(2, 1fr);
	}

	.company-highlight-item {

		min-height: unset;
	}

	.company-hero-section {
		min-height: 400px;
	}

	.company-hero-content {
		padding-bottom: 25px;
	}

	.company-hero-logo {
		margin-bottom: 25px;
	}

	.company-hero-title {
		padding: 0 15px;
		line-height: 1.3;
	}

	.company-hero-logo-img {
		height: 50px;
	}

	.company-intro-section,
	.company-coo-quote-section,
	.company-contact-section {
		padding: 40px 0;
	}

	.company-intro-section {
		padding: 30px 0;
	}

	.company-intro-section h2 {
		margin-bottom: 30px;
	}

	.company-intro-wrapper {
		gap: 25px;
	}

	.company-intro-image-wrapper {
		margin-bottom: 0;
	}

	.company-intro-button {
		bottom: 10px;
		left: 10px;
		padding: 8px 16px;
		font-size: 12px;
	}

	.company-coo-quote-section {
		padding-bottom: 40px;
	}

	.company-coo-quote-wrapper {
		margin-bottom: 40px;
		gap: 25px;
	}

	.company-highlights-wrapper {
		margin-top: 40px;
	}

	.company-intro-heading,
	.company-coo-quote-heading,
	.company-contact-heading {
		font-size: 25px;
		margin-bottom: 10px;
	}

	.company-coo-quote-text {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 20px;
	}

	.company-coo-quote-name {
		font-size: 20px;
	}

	.company-coo-quote-position {
		font-size: 15px;
	}

	.company-highlights-large-text {
		font-size: 60px;
		letter-spacing: 2px;
		margin-bottom: -10px;
	}

	.company-highlight-item {
		padding: 20px 0;
		gap: 20px;
	}

	.company-highlight-icon {
		width: 35px;
		height: 35px;
	}

	.company-highlight-number {
		font-size: 36px;
	}

	.company-highlight-title {
		font-size: 16px;
	}

	.company-highlight-description {
		font-size: 14px;
	}

	.company-services-swiper {
		margin: 40px 0;
	}

	.company-services-section,
	.company-services-swiper,
	.company-services-swiper .swiper-slide {
		min-height: 450px;
	}

	.company-services-section .container {
		min-height: 450px;
		padding: 0 10px;
	}

	.company-services-content {
		min-height: 450px;
		padding: 30px 15px 25px 15px;
	}

	.company-services-navigation {
		top: 15px;
		right: 15px;
		gap: 6px;
	}

	.company-services-nav {
		width: 40px;
		height: 40px;
	}

	.company-services-nav img {
		width: 18px;
	}

	.company-services-label {
		font-size: 14px;
		margin-bottom: 12px;
	}

	.company-services-title {
		margin-bottom: 15px;
		line-height: 1.2;
	}

	.company-services-description {
		font-size: 13px;
		margin-bottom: 30px;
		line-height: 1.5;
	}

	.company-services-list {
		gap: 12px;
	}

	.company-service-item {
		padding: 12px 0;
	}

	.company-service-number {
		font-size: 13px;
		margin-bottom: 4px;
	}

	.company-service-title {
		font-size: 14px;
		line-height: 1.3;
	}

	.company-contact-logo {
		margin-bottom: 15px;
	}

	.company-contact-logo-img {
		max-width: 60px;
	}

	.company-contact-description {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.company-contact-details {
		gap: 15px;
		margin: 25px 0;
	}

	.company-contact-item {
		gap: 10px;
	}

	.company-contact-icon {
		width: 18px;
		height: 18px;
	}

	.company-contact-text {
		font-size: 14px;
		line-height: 1.5;
	}

	.company-contact-social {
		gap: 12px;
		margin-top: 25px;
	}

	.company-contact-social-link {
		width: 45px;
		height: 45px;
	}

	.company-contact-social-link img {
		width: 16px;
	}
}