.container_about {
	max-width: 16.4rem;
	margin: 80px auto;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	align-items: flex-start;
}

/* Left Column */
.left-section_about {
	flex: 1;
	min-width: 300px;
}

.subtitle_about {
	font-size: 14px;
	font-weight: 600;
	color: #2c3e50;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.big-year {
	font-size: 120px;
	font-weight: 700;
	color: #2c3e50;
	line-height: 1;
	margin-bottom: 20px;
	font-family: Arial, sans-serif; /* Fallback for bold numbers */
}

.description_about {
	font-size: 15px;
	color: #666;
	/*text-align: justify;*/
	line-height: 28px;
}

.description_about p {
	margin-bottom: 10px;
	line-height: 28px;
}

/* Right Column */
.right-section_about {
	flex: 1;
	min-width: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.stat-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	border-bottom: 1px solid #e0e0e0;
}

.stat-row:last-child {
	border-bottom: none;
}

.stat-number {
	font-size: 36px;
	font-weight: 600;
	color: #2c3e50;
	white-space: nowrap;
	margin-right: 20px;
}

.stat-number sup {
	font-size: 16px;
	vertical-align: super;
}

.stat-number span {
	font-size: 18px;
	vertical-align: baseline;
	margin-left: 2px;
}

.stat-label {
	font-size: 18px;
	color: #666;
	text-align: right;
	flex-grow: 1;
}


/* Grid Layout */
.grid-container-core {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	/* Ensure equal height rows roughly, or let content dictate. 
	   Using min-height to make it look like the image blocks. */
}

.grid-item-core {
	min-height: 400px; /* Base height for desktop */
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

/* --- Top Left: Core Values --- */
.box-values-core {
	background-color: #fcfbf7; /* Light beige/white */
	padding: 60px 80px;
	align-items: flex-start; /* Align content to left */
}

.box-values-core h2 {
	font-size: 32px;
	font-weight: 400;
	margin-bottom: 40px;
	color: #111;
}

.icons-wrapper-core {
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
}

.icon-item-core {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.icon-svg-core {
	width: 40px;
	height: 40px;
	stroke: #e67e22; /* Orange color from image */
	stroke-width: 1.5;
	fill: none;
}

.icon-item-core span {
	font-size: 16px;
	color: #333;
}

/* --- Top Right: Team Image --- */
.box-team-core {
	background-size: cover;
	background-position: center;
	max-height: 400px;
  overflow: hidden;
}

/* --- Bottom Left: Dandelion Image --- */
.box-nature-core {
	background-size: cover;
	background-position: center;
	max-height: 400px;
  overflow: hidden;
}

/* --- Bottom Right: Corporate Vision --- */
.box-vision-core {
	background-color: #1e3a5f; /* Dark Blue */
	padding: 60px 80px;
	color: #fff;
	align-items: flex-start;
	justify-content: center;
}

.box-vision-core h2 {
	font-size: 32px;
	font-weight: 400;
	margin-bottom: 20px;
}

.box-vision-core p {
	font-size: 16px;
	color: #d1d5db; /* Light gray text */
	max-width: 80%;
	line-height: 1.6;
}



.container_qua {
	max-width: 16.4rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 40px; /* Space between the two section_quas */
}

/* Common Section Styles */
.section_qua {
	display: flex;
	background-color: #f7f7f5; /* Light beige/gray background */
	height: 450px; /* Fixed height for desktop consistency */
	overflow: hidden;
}

.content-box-qua {
	flex: 1;
	padding: 60px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.image-box-qua {
	flex: 1;
	position: relative;
}

.image-box-qua img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Typography */
.content-box-qua h2 {
	font-size: 42px;
	font-weight: 400; /* Regular weight as seen in image */
	color: #111;
	margin-bottom: 24px;
	line-height: 1.2;
}

.content-box-qua p {
	font-size: 15px;
	color: #666;
	line-height: 1.8;
	max-width: 90%;
}

/* Specific Layouts */
/* Row 1: Image Left, Text Right */
.row-1 .image-box-qua {
	order: 1;
}
.row-1 .content-box-qua {
	order: 2;
	align-items: flex-start; /* Align text to left */
}

/* Row 2: Text Left, Image Right */
.row-2 .content-box-qua {
	order: 1;
	align-items: flex-start;
}
.row-2 .image-box-qua {
	order: 2;
}




/* Responsive Adjustments */
@media (max-width: 768px) {
	.container_about {
		flex-direction: column;
		gap: 40px;width: 92%;
	}
.container_qua{width: 92%;}
	.big-year {
		font-size: 50px;
	}

	.stat-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}

	.stat-label {
		text-align: left;
		font-size: 14px;
	}
	
	.stat-number {
		font-size: 24px;
		margin-right: 0;
	}
	.stat-row{padding: 10px 0;}
	.grid-container-core {
                grid-template-columns: 1fr; width: 92%;
    margin: 0 auto 40px;
            }

            .grid-item-core {
                min-height: 300px;
            }

            .box-values-core, .box-vision-core {
                padding: 40px 30px;
            }

            .box-values-core h2, .box-vision-core h2 {
                font-size: 26px;
            }

            .icons-wrapper-core {
                gap: 30px;
                justify-content: space-between;
                width: 100%;
            }
            
            .box-team-core, .box-nature-core {
                min-height: 250px; /* Smaller height for images on mobile */
            }


.section_qua {
                flex-direction: column;
                height: auto; /* Allow height to adjust on mobile */
}

.image-box-qua {
	height: 300px; /* Fixed height for mobile images */
	width: 100%;
}

.content-box-qua {
	padding: 40px 30px;
	width: 100%;
}

.content-box-qua h2 {
	font-size: 32px;
}

.content-box-qua p {
	font-size: 14px;
	max-width: 100%;
}

.row-1 .image-box-qua { order: 1; }
.row-1 .content-box-qua { order: 2; }

.row-2 .image-box-qua { order: 1; } /* Force image to top on mobile */
.row-2 .content-box-qua { order: 2; }

	
}