.container_cpny {
	max-width: 100%;
	/*margin: 0 auto;*/
	/*background-color: #fff;*/
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	padding: 0 5%;
	/*box-shadow: 0 4px 15px rgba(0,0,0,0.05);*/
}
.left-content {
	flex: 1;
	min-width: 300px;
	padding-right: 20px;
}

h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #1a1a1a;
}

.description p {
	margin-bottom: 20px;
	color: #666;
	font-size: 16px;
	/*text-align: justify;*/
}

/* Right Sidebar Column */
.right-sidebar {
	flex: 0 0 400px; /* Fixed width for sidebar */
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* Black Contact Card */
.contact-card {
	background-color: #111;
	color: #fff;
	padding: 30px;
	border-radius: 4px;
}

.contact-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	font-size: 15px;
}

.contact-row:last-child {
	margin-bottom: 0;
}

.label {
	color: #999;
	font-weight: 500;
}

.value {
	font-weight: 600;
	text-align: right;
	color: #fff;
}

/* Quote Form Section */
.quote-section {
	background-color: #f5f5f5;
	padding: 40px 30px;
	border-radius: 4px;
}

.quote-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 25px;
	color: #111;
}

.form-group {
	margin-bottom: 15px;
}

.form-control {
	width: 100%;
	padding: 15px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	background-color: #fff;
	font-size: 14px;
	color: #333;
	transition: border-color 0.3s;
}

.form-control:focus {
	outline: none;
	/*border-color: #e60000;*/
}

textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

.btn-submit {
	width: 100%;
	padding: 18px;
	background-color: #e60000;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
	transition: background-color 0.3s;
	margin-top: 10px;
}

.btn-submit:hover {
	background-color: #cc0000;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.container_cpny {
		flex-direction: column;
		padding: 20px;
	}
	
	.right-sidebar {
		flex: auto;
		width: 100%;
	}

	.contact-card, .quote-section {
		width: 100%;
	}
}

@media (max-width: 600px) {
	h1 {
		font-size: 24px;
	}
	
	.contact-row {
		flex-direction: column;
		gap: 5px;
	}
	
	.value {
		text-align: left;
	}
}







