	.service-content {
		position: relative;
		z-index: 2;
		display: flex;
		align-items: center;
		min-height: 550px;
	}

	.service-content::before {
		content: '';
		position: absolute;
		top: 0;
		left: 50%;
		width: 100vw;
		height: 100%;
		background: url('https://optim.tildacdn.com/tild6639-3764-4466-a432-353163663531/-/format/webp/divhero_1.png') no-repeat center center;
		background-size: cover;
		opacity: 0.05;
		z-index: 1;
		transform: translateX(-50%);
	}

	.text-content {
		flex: 1 1 50%;
		padding: 20px;
	}


	.row {
		max-width: 1200px;
		margin: 0 auto;
		position: relative;
		z-index: 2;
	}

	.text-content {
		flex: 2 1 60%;
		margin-right: 20px;
		background-color: rgba(255, 255, 255, 0.8);
		padding: 20px;
		border-radius: 8px;
		position: relative;
		z-index: 2;
	}

	.text-content h1 {
		margin: 0 0 10px;
	}

	.text-content p {
		margin: 0 0 20px;
	}

	.image-content {
		flex: 1 1 40%;
		position: relative;
		z-index: 2;
	}

	.image-content img {
		max-width: 100%;
		height: auto;
		display: block;
	}

	.full-width-section {
		width: 100%;
		background-color: #f5f5f7;
		padding: 40px 20px;
		box-sizing: border-box;
		text-align: center;
	}

	.full-width-section h2 {
		position: static;
		margin: 0 0 20px;
	}

	.full-width-section p {
		margin: 0 0 20px;
	}

	.split-section {
		display: flex;
		justify-content: space-between;
		max-width: 1020px;
		margin: 42px auto;
	}

	.split-section .left-content {
		flex: 0 0 35%;
		padding: 0;
		border-radius: 18px;
		overflow: hidden;
		position: relative;
		height: 271px;
	}

	.video-container {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.video {
		width: 100%;
		height: 100%;
		object-fit: fill;
	}

	.split-section .right-content {
		flex: 0 0 60%;
		background-color: #0071e3;
		padding: 20px;
		color: #fff;
		border-radius: 18px;
		box-sizing: border-box;
	}

	.right-content h3 {
		padding-bottom: 15px;
		font-size: 30px;
	}

	.split-section-reverse {
		display: flex;
		justify-content: space-between;
		margin-top: 40px;
	}

	.split-section-reverse .left-content {
		flex: 0 0 60%;
		background-color: #2E7031;
		padding: 20px;
		color: #fff;
		border-radius: 8px;
		box-sizing: border-box;
	}

	.split-section-reverse .right-content {
		flex: 0 0 35%;
		background-color: #3E8E41;
		padding: 20px;
		color: #fff;
		border-radius: 18px;
		box-sizing: border-box;
	}



	.accordion-section {
		width: 80%;
		max-width: 1020px;
		margin: 40px auto;
		padding: 0;
		background-color: transparent;
		box-sizing: border-box;
	}

	.accordion-section h2 {
		position: static;
		text-align: center;
		padding: 35px;
	}

	.accordion-item {
		border: none !important;
		border-top: 1px solid #eee !important;
	}

	.accordion-item:last-child {
		border-bottom: 1px solid #eee !important;
	}


	.accordion {
		width: 100%;
		background-color: transparent;
		color: #000;
		cursor: pointer;
		padding: 15px 0;
		text-align: left;
		font-size: 24px;
		font-weight: bold;
		border: none;
		outline: none;
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.accordion-icon {
		width: 24px;
		height: 24px;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background-color 0.3s ease, transform 0.3s ease;
	}

	.accordion-icon svg {
		width: 24px;
		height: 24px;
	}

	.accordion:hover .accordion-icon {
		width: 40px;
		height: 40px;
		background-color: #f0f0f0;
		border-radius: 50%;
	}

	.accordion.active .accordion-icon svg {
		transform: rotate(45deg);
		width: 24px;
		height: 24px;
	}

	.panel {
		padding: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease, padding 0.3s ease;
		background-color: transparent;
	}

	.accordion.active+.panel {
		max-height: 200px;
		padding-bottom: 15px;
	}

	.standard-block,
	.custom-block {
		width: 100%;
		max-width: 1020px;
		margin: 20px auto;
		background-color: #fff;
		border-radius: 18px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		box-sizing: border-box;
	}

	.standard-block img {
		width: 100%;
		height: auto;
		display: block;
		margin-top: 20px;
		border-radius: 0 0 18px 18px;
	}

	.custom-block {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.custom-block .text-content,
	.custom-block .image-content {
		flex: 1;
		padding: 20px;

	}

	.custom-block .image-content img {
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.text-left-image-right .text-content {
		order: 1;
	}

	.text-left-image-right .image-content {
		order: 2;
	}

	.image-left-text-right .image-content {
		order: 1;
	}

	.image-left-text-right .text-content {
		order: 2;
	}

	.dual-block-container {
		display: flex;
		justify-content: space-between;
		gap: 20px;
		max-width: 1020px;
		margin: 0 auto;
	}

	.block-left,
	.block-right {
		flex: 1;
		align-items: flex-end;
		display: flex;
		height: 350px;
		text-align: left;
		padding: 30px;
		margin: 20px auto;
		border-radius: 18px;
		color: #fff;
		font-size: 30px;
		font-weight: bold;
		line-height: 1.4;
		box-sizing: border-box;

	}

	.block-left {
		background-color: #0071e3;
		font-size: 40px;
		line-height: 1.1;
	}

	.block-right {
		background-color: #1c1c1e;
	}

	ul.styled-list {
		list-style-type: none;
		padding: 0;
		margin: 0;
		text-align: left;
	}

	ul.styled-list li {
		display: flex;
		align-items: center;
		margin-bottom: 10px;
		padding-left: 35px;
		position: relative;
	}

	ul.styled-list li::before {
		content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>');
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 16px;
		height: 22px;
	}

	.form-container {
		max-width: 600px;
		margin: 50px auto;
		padding: 30px;
		background-color: #f7f7f7;
		border-radius: 15px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}

	.form-title {
		text-align: center;
		font-size: 38px;
		margin-bottom: 35px;
		position: static;
	}

	.form-subtitle {
		text-align: center;
		font-size: 18px;
		color: #666;
		margin-bottom: 30px;
	}

	.form-group {
		margin-bottom: 20px;
	}

	.form-group label {
		display: block;
		font-size: 16px;
		margin-bottom: 5px;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		width: 100%;
		padding: 10px;
		font-size: 16px;
		border: 1px solid #ccc;
		border-radius: 5px;
	}

	.form-footer {
		text-align: center;
		font-size: 14px;
		color: #999;
		margin-top: 20px;
	}

	.submit-btn {
		width: 100%;
		background-color: #16d;
		color: #fff;
		border: none;
		cursor: pointer;
		font-size: 18px;
		padding: 15px;
		border-radius: 50px;
		transition: background-color 0.3s;
	}

	.submit-btn:hover {
		background-color: #333;
	}

@media (max-width: 768px) {
	.container {
		align-items: flex-start;
	}

	.text-content {
		margin-right: 0;
		margin-bottom: 20px;
		text-align: center;
	}

	.text-content,
	.image-content {
		flex: 1 1 100%;
		padding: 10px;
	}

	.service-content {
		flex-direction: column;
	}

	.service-content::before {
		height: 200%;
	}

	.split-section,
	.split-section-reverse {
		flex-direction: column;
	}

	.split-section .left-content,
	.split-section .right-content,
	.split-section-reverse .left-content,
	.split-section-reverse .right-content {
		flex: 1 1 100%;
		margin-bottom: 20px;
		height: auto;
	}


	.custom-block {
		flex-direction: column;
	}

	.custom-block .text-content,
	.custom-block .image-content {
		width: 100%;
		text-align: center;
	}

	.custom-block .image-content img {
		max-width: 100%;
		height: auto;
	}

	.dual-block-container {
		flex-direction: column;
	}

	.split-section .left-content {
		height: auto;
		margin-bottom: 20px;
	}

	.video-container {
		position: relative;
		height: 238px;
	}

	.video {
		width: 100%;
		height: auto;
	}

	.form-container {
		margin: 20px;
		padding: 20px;
	}
}