/* End custom CSS */

.elementor-kit-2932 {
	--e-global-color-primary: #fff;
	--e-global-color-secondary: #54595f;
	--e-global-color-text: #000;
	--e-global-color-accent: #61ce70;
	--e-global-color-2eab9b30: #6ec1e4;
	--e-global-color-7becbbbe: #7a7a7a;
	--e-global-color-1255cc7e: #4054b2;
	--e-global-color-2fc527a5: #23a455;
	--e-global-color-33398ca: #000;
	--e-global-color-6bb1593a: #fff;
	--e-global-color-1114c9a: #84c6e3;
	--e-global-color-349e32f8: #adb6ba;
	--e-global-color-63be2780: #0274be;
	--e-global-color-3c88e4b8: #f0ad4e;
	--e-global-color-600a4245: #e9eaef;
	--e-global-color-ecb0cf7: #4494ad;
	--e-global-typography-primary-font-family: "Open Sans";
	--e-global-typography-primary-font-weight: 400;
	--e-global-typography-secondary-font-family: "Roboto Slab";
	--e-global-typography-secondary-font-weight: 400;
	--e-global-typography-text-font-family: "Open Sans";
	--e-global-typography-text-font-weight: 400;
	--e-global-typography-accent-font-family: "Roboto";
	--e-global-typography-accent-font-weight: 500;
}

.elementor-kit-2932 e-page-transition {
	background-color: #ffbc7d;
}

.elementor-section.elementor-section-boxed > .elementor-container {
	max-width: 1140px;
}

.e-con {
	--container-max-width: 1140px;
}

.elementor-widget:not(:last-child) {
	margin-block-end: 20px;
}

.elementor-element {
	--widgets-spacing: 20px 20px;
	--widgets-spacing-row: 20px;
	--widgets-spacing-column: 20px;
}

h1.entry-title {
	display: var(--page-title-display);
}

@media (max-width:1024px) {
	.elementor-section.elementor-section-boxed > .elementor-container {
		max-width: 1024px;
	}
	
	.e-con {
		--container-max-width: 1024px;
	}
}

@media (max-width:767px) {
	.elementor-section.elementor-section-boxed > .elementor-container {
		max-width: 767px;
	}
	
	.e-con {
		--container-max-width: 767px;
	}
}

/* Start custom CSS */

/* --- General Styles --- */
.french-polishing-process {
	padding: 60px 20px;
	max-width: 900px;
	margin: 0 auto;
	font-family: "Open Sans", sans-serif;
	/* Apply Open Sans to the whole section */
	color: #000;
}

.process-title {
	color: #4992ab;
	/* Keep the title color */
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 16px;
}

.process-description {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 60px;
	font-size: 18px;
}

/* --- Timeline Styles --- */
.timeline {
	position: relative;
	/* For absolute positioning of the line */
	
	/* Define CSS variables for icon sizes */
	--icon-size-desktop: 60px;
	--icon-size-tablet: 48px;
	--icon-size-mobile: 60px;
	/* Consistent size */
	--line-width: 1px;
}

.timeline::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	/* Calculate left based on icon size and line width */
	left: calc(( var(--icon-size-desktop) / 2 ) + ( var(--line-width) / 2 ));
	width: var(--line-width);
	background-color: rgba(73, 146, 171, .4);
	border-radius: 3px;
	z-index: 1;
}

.timeline-item {
	display: flex;
	align-items: flex-start;
	/* Align content to the top */
	margin-bottom: 40px;
	/* Space between items */
	position: relative;
}

.timeline-icon {
	width: var(--icon-size-desktop);
	/* Use the variable */
	height: var(--icon-size-desktop);
	/* Use the variable */
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 20px;
	/* Space between icon and content */
	flex-shrink: 0;
	/* Prevent the icon from shrinking */
	z-index: 2;
	/* Above the line */
	display: flex;
	/* Use flexbox to center the image within */
	justify-content: center;
	align-items: center;
}

.timeline-content {
	background-color: white;
	border-radius: 8px;
	border: 1px solid #f0f0f0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
	transition: box-shadow .3s ease;
	padding: 20px;
	z-index: 2;
}

.timeline-content:hover {
	box-shadow: 0 6px 12px rgba(0, 0, 0, .3);
}

.timeline-content h3 {
	color: #4992ab;
}

/* --- Tablet Styles --- */
@media (max-width: 768px) {
	.timeline::before {
		/* Recalculate for tablet icon size */
		left: calc(( var(--icon-size-tablet) / 2 ) + ( var(--line-width) / 2 ));
	}
	
	.timeline-icon {
		width: var(--icon-size-tablet);
		/* Use the tablet variable */
		height: var(--icon-size-tablet);
	}
	
	.timeline-content {
		padding: 16px;
	}
}

/* --- Mobile Styles --- */
@media (max-width: 599px) {
	.timeline::before {
		left: 50%;
		/* Center the line */
		transform: translateX(-50%);
	}
	
	.timeline-item {
		flex-direction: column;
		/* Stack icon and content */
		align-items: center;
		/* Center items horizontally */
		text-align: center;
	}
	
	.timeline-icon {
		margin-right: 0;
		/* Remove horizontal margin */
		margin-bottom: 10px;
		/* Space below icon */
		width: var(--icon-size-mobile);
		height: var(--icon-size-mobile);
	}
	
	.timeline-content {
		width: 95%;
	}
}

/* --- Conclusion Paragraph Styles --- */
.conclusion-paragraph {
	margin-top: 40px;
	/* Space above the paragraph */
	text-align: center;
	/* Center the text */
	
	/* font-family: 'Open Sans', sans-serif;  Removed: Inherits */
	
	/* color: #000; Removed: Inherits */
	line-height: 1.6;
}
