* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: #f8f8f8;
	color: #1a1a1a;
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

/* ===================== Typography ===================== */
h1 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

h2 {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
	color: #333333;
	text-transform: uppercase;
}

h3 {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.8rem;
	color: #333333;
}

h4 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.6rem;
	color: #333333;
}

h5 {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 0.5rem;
	color: #333333;
}

h6 {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 0.5rem;
	color: #333333;
}

p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	line-height: 1.7;
	color: #1a1a1a;
}

/* ===================== Buttons & Interactive ===================== */
.ecd-btn {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	gap: 10px;
}

.ecd-btn-primary {
	background: #2aa198;
	color: #ffffff;
	border: 2px solid #2aa198;
}

.ecd-btn-primary:hover {
	background: #238b83;
	border-color: #238b83;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(42, 161, 152, 0.3);
}

.ecd-btn-secondary {
	background: transparent;
	color: #333333;
	border: 2px solid #333333;
}

.ecd-btn-secondary:hover {
	background: #333333;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(51, 51, 51, 0.3);
}

.ecd-btn-outline {
	background: transparent;
	color: #2aa198;
	border: 2px solid #2aa198;
}

.ecd-btn-outline:hover {
	background: #2aa198;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(42, 161, 152, 0.3);
}

.ecd-btn:disabled {
	background: #cccccc;
	color: #999999;
	border-color: #cccccc;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* ===================== Container & Layout ===================== */
.ecd-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ecd-container-fluid {
	width: 100%;
	padding: 0 20px;
}

.ecd-section {
	padding: 80px 0;
}

.ecd-section-sm {
	padding: 60px 0;
}

.ecd-section-lg {
	padding: 100px 0;
}

.ecd-grid {
	display: grid;
	gap: 30px;
}

.ecd-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.ecd-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.ecd-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.ecd-flex {
	display: flex;
}

.ecd-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ecd-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ecd-flex-column {
	display: flex;
	flex-direction: column;
}

/* ===================== Header Styles ===================== */
.ecd-header {
	position: fixed;
	top: 0;
	width: 100%;
	background: transparent;

	z-index: 1000;
	transition: all 0.3s ease;
}

.ecd-header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ecd-header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.ecd-logo {
	display: flex;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: #2aa198;
	text-decoration: none;
}

.ecd-logo img {
	height: 40px;
	margin-right: 10px;
}

.ecd-nav {
	display: flex;
	align-items: center;
	gap: 40px;
}

.ecd-nav-link {
	font-weight: 500;
	color: #333333;
	position: relative;
	transition: all 0.3s ease;
	padding: 8px 0;
}

.ecd-nav-link:hover {
	color: #2aa198;
}

.ecd-nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	background: #2aa198;
	transition: width 0.3s ease;
}

.ecd-nav-link:hover::after,
.ecd-nav-link.active::after {
	width: 100%;
}

.ecd-header-contact {
	color: #333333;
	font-weight: 500;
	padding: 8px 16px;
	border: 2px solid #2aa198;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.ecd-header-contact:hover {
	background: #2aa198;
	color: #ffffff;
}

.ecd-mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #333333;
	cursor: pointer;
	padding: 8px;
	transition: color 0.3s ease;
}

.ecd-mobile-toggle:hover {
	color: #2aa198;
}

/* ===================== Hero Section ===================== */

/* ===================== Company Overview Section ===================== */
.ecd-company {
	background: #ffffff;
	padding: 80px 0;
}

.ecd-company-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.ecd-company-title {
	color: #333333;
	margin-bottom: 30px;
}

.ecd-company-text {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #1a1a1a;
	margin-bottom: 20px;
}

.ecd-company-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.ecd-stat-item {
	text-align: center;
	padding: 30px 20px;
	background: #f8f8f8;
	border-radius: 12px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.ecd-stat-item:hover {
	border-color: #2aa198;
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(42, 161, 152, 0.15);
}

.ecd-stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2aa198;
	margin-bottom: 10px;
}

.ecd-stat-label {
	color: #333333;
	font-weight: 500;
}

/* ===================== Advantages Section ===================== */
.ecd-advantages {
	background: #f8f8f8;
	padding: 80px 0;
}

.ecd-advantages-title {
	text-align: center;
	color: #333333;
	margin-bottom: 60px;
}

.ecd-advantages-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.ecd-advantage-card {
	background: #ffffff;
	padding: 40px 30px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-left: 4px solid #2aa198;
}

.ecd-advantage-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ecd-advantage-icon {
	font-size: 3rem;
	color: #2aa198;
	margin-bottom: 20px;
}

.ecd-advantage-title {
	color: #333333;
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.ecd-advantage-text {
	color: #1a1a1a;
	line-height: 1.6;
	font-size: 1.05rem;
}

/* ===================== Process Section ===================== */
.ecd-process {
	background: #ffffff;
	padding: 80px 0;
}

.ecd-process-title {
	text-align: center;
	color: #333333;
	margin-bottom: 60px;
}

.ecd-process-steps {
	max-width: 800px;
	margin: 0 auto;
}

.ecd-process-step {
	display: flex;
	align-items: flex-start;
	margin-bottom: 40px;
	padding: 30px;
	background: #f8f8f8;
	border-radius: 12px;
	position: relative;
	transition: all 0.3s ease;
}

.ecd-process-step:hover {
	background: #ffffff;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transform: translateX(10px);
}

.ecd-process-step:last-child {
	margin-bottom: 0;
}

.ecd-process-number {
	background: #2aa198;
	color: #ffffff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
	margin-right: 20px;
	flex-shrink: 0;
}

.ecd-process-content h4 {
	color: #333333;
	margin-bottom: 10px;
}

.ecd-process-content p {
	color: #1a1a1a;
	margin-bottom: 0;
}

/* ===================== Service Catalog Section ===================== */
.ecd-catalog {
	background: #f8f8f8;
	padding: 80px 0;
}

.ecd-catalog-title {
	text-align: center;
	color: #333333;
	margin-bottom: 60px;
}

.ecd-catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.ecd-service-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ecd-service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.ecd-service-image {
	width: 100%;
	height: 250px;
	background: #e0e0e0;
	background-size: cover;
	background-position: center;
	position: relative;
}

.ecd-service-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.ecd-service-content a {
	margin-top: auto;
}

.ecd-service-title {
	color: #333333;
	margin-bottom: 15px;
	font-size: 1.4rem;
}

.ecd-service-description {
	color: #1a1a1a;
	line-height: 1.6;
	margin-bottom: 20px;
}

.ecd-service-btn {
	width: 100%;
	text-align: center;
}

/* ===================== Contact Form Section ===================== */
.ecd-contact-form {
	background: linear-gradient(
			rgba(255, 255, 255, 0.7),
			rgba(255, 255, 255, 0.7)
		),
		url('assets/ecd-contact-bg.avif') center/cover;
	background-attachment: fixed;
	padding: 80px 0;
}

.ecd-contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.ecd-contact-info {
	color: #1a1a1a;
}

.ecd-contact-info h2 {
	color: #333333;
	margin-bottom: 20px;
}

.ecd-contact-text {
	font-size: 1.2rem;
	line-height: 1.7;
	margin-bottom: 30px;
}

.ecd-contact-features {
	list-style: none;
	margin-bottom: 30px;
}

.ecd-contact-features li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-size: 1.1rem;
}

.ecd-contact-features i {
	color: #2aa198;
	margin-right: 15px;
	font-size: 1.2rem;
}

.ecd-form-container {
	background: rgba(255, 255, 255, 0.95);
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ecd-form {
	width: 100%;
}

.ecd-form-group {
	margin-bottom: 25px;
}

.ecd-form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #333333;
}

.ecd-form-input,
.ecd-form-textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #ffffff;
	color: #1a1a1a;
	font-family: inherit;
}

.ecd-form-input:focus,
.ecd-form-textarea:focus {
	outline: none;
	border-color: #2aa198;
	box-shadow: 0 0 8px rgba(42, 161, 152, 0.3);
}

.ecd-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.ecd-form-submit {
	width: 100%;
	padding: 15px;
	background: #2aa198;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.ecd-form-submit:hover:not(:disabled) {
	background: #238b83;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(42, 161, 152, 0.3);
}

.ecd-form-submit:disabled {
	background: #cccccc;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}
.ecd-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

.ecd-error-message.show {
	display: block;
}

.ecd-form-input.error,
.ecd-form-textarea.error {
	border-color: #dc3545;
	box-shadow: 0 0 8px rgba(220, 53, 69, 0.3);
}

/* ===================== Footer ===================== */
.ecd-footer {
	background: #1a1a1a;
	color: #ffffff;
	padding: 60px 0 20px;
}

.ecd-footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

.ecd-footer-section h4 {
	color: #2aa198;
	margin-bottom: 20px;
	font-size: 1.3rem;
}

.ecd-footer-links {
	list-style: none;
}

.ecd-footer-links li {
	margin-bottom: 12px;
}

.ecd-footer-links a {
	color: #cccccc;
	transition: color 0.3s ease;
	font-size: 1rem;
}

.ecd-footer-links a:hover {
	color: #2aa198;
}

.ecd-footer-contact p {
	color: #cccccc;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.ecd-footer-contact i {
	margin-right: 10px;
	color: #2aa198;
	width: 20px;
}

.ecd-footer-contact a {
	color: #cccccc;
	transition: color 0.3s ease;
}

.ecd-footer-contact a:hover {
	color: #2aa198;
}

.ecd-footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #333333;
	color: #cccccc;
}

.ecd-footer-bottom p {
	color: #cccccc;
}

/* ===================== Cookie Banner ===================== */
.ecd-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(10px);
	color: #ffffff;
	padding: 20px;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
	transform: translateY(100%);
	transition: transform 0.4s ease;
	display: none;
}

.ecd-cookie-banner.show {
	transform: translateY(0);
	display: flex;
}

.ecd-cookie-text {
	flex: 1;
	margin-right: 30px;
}

.ecd-cookie-text p {
	margin: 0;
	color: #cccccc;
	font-size: 0.95rem;
	line-height: 1.5;
}

.ecd-cookie-text a {
	color: #2aa198;
	text-decoration: underline;
}

.ecd-cookie-text a:hover {
	color: #238b83;
}

.ecd-cookie-buttons {
	display: flex;
	gap: 15px;
	flex-shrink: 0;
}

.ecd-cookie-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 100px;
}

.ecd-cookie-accept {
	background: #2aa198;
	color: #ffffff;
}

.ecd-cookie-accept:hover {
	background: #238b83;
	transform: translateY(-1px);
}

.ecd-cookie-decline {
	background: transparent;
	color: #cccccc;
	border: 2px solid #555555;
}

.ecd-cookie-decline:hover {
	background: #333333;
	border-color: #777777;
}

/* ===================== About Page Styles ===================== */
.ecd-page-header {
	background: linear-gradient(to top, #2aa198, #f8f8f8);
	color: #ffffff;
	padding: 120px 0 80px;
	text-align: center;
}

.ecd-page-title {
	font-size: 3.5rem;
	margin-bottom: 20px;
	font-weight: 700;
	color: #f8f8f8;
}

.ecd-page-subtitle {
	font-size: 1.3rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
	color: #f8f8f8;
}

.ecd-about-content {
	background: #ffffff;
	padding: 80px 0;
}

.ecd-about-text {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.2rem;
	line-height: 1.8;
	text-align: center;
	margin-bottom: 60px;
}

.ecd-mission-values {
	background: #f8f8f8;
	padding: 80px 0;
}

.ecd-mission-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
}

.ecd-mission-item {
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
}

.ecd-mission-icon {
	font-size: 3rem;
	color: #2aa198;
	margin-bottom: 20px;
}

.ecd-mission-title {
	color: #333333;
	margin-bottom: 20px;
}

.ecd-mission-text {
	color: #1a1a1a;
	line-height: 1.7;
}

.ecd-team {
	background: #ffffff;
	padding: 80px 0;
}

.ecd-team-title {
	text-align: center;
	color: #333333;
	margin-bottom: 60px;
}

.ecd-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.ecd-team-member {
	background: #f8f8f8;
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
}

.ecd-team-member:hover {
	background: #ffffff;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.ecd-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 20px;
	background: #e0e0e0;
	background-size: cover;
	background-position: center;
	border: 4px solid #2aa198;
}

.ecd-team-name {
	font-weight: 600;
	color: #333333;
	margin-bottom: 5px;
	font-size: 1.2rem;
}

.ecd-team-role {
	color: #1a1a1a;
	font-size: 1rem;
	margin-bottom: 15px;
}

.ecd-team-bio {
	color: #1a1a1a;
	font-size: 0.9rem;
	line-height: 1.6;
}

/* ===================== Services Page Styles ===================== */
.ecd-services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
}

.ecd-service-detail {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ecd-service-header {
	background: #f8f8f8;
	padding: 40px;
	text-align: center;
}

.ecd-service-icon {
	font-size: 4rem;
	color: #2aa198;
	margin-bottom: 20px;
}

.ecd-service-name {
	color: #333333;
	margin-bottom: 15px;
	font-size: 2rem;
}

.ecd-service-tagline {
	color: #1a1a1a;
	font-size: 1.2rem;
	font-style: italic;
}

.ecd-service-body {
	padding: 40px;
}

.ecd-service-description {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 30px;
	color: #1a1a1a;
}

.ecd-service-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.ecd-feature-item {
	display: flex;
	align-items: center;
	padding: 15px;
	background: #f8f8f8;
	border-radius: 8px;
}

.ecd-feature-item i {
	color: #2aa198;
	margin-right: 12px;
	font-size: 1.1rem;
}

.ecd-feature-text {
	color: #1a1a1a;
	font-size: 1rem;
}

/* ===================== FAQ Page Styles ===================== */
.ecd-faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.ecd-faq-item {
	background: #ffffff;
	margin-bottom: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.ecd-faq-question {
	width: 100%;
	padding: 25px 30px;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.2rem;
	font-weight: 600;
	color: #333333;
	transition: all 0.3s ease;
}

.ecd-faq-question:hover {
	background: #f8f8f8;
	color: #2aa198;
}

.ecd-faq-question i {
	transition: transform 0.3s ease;
	color: #2aa198;
	font-size: 1.1rem;
}

.ecd-faq-question.active {
	background: #f8f8f8;
	color: #2aa198;
}

.ecd-faq-question.active i {
	transform: rotate(180deg);
}

.ecd-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #ffffff;
}

.ecd-faq-answer.active {
	max-height: 1000px;
}

.ecd-faq-answer-content {
	padding: 0 30px 25px 30px;
	color: #1a1a1a;
	line-height: 1.7;
	font-size: 1.05rem;
}

/* ===================== Contact Page Styles ===================== */
.ecd-contact-page {
	background: #ffffff;
	padding: 80px 0;
}

.ecd-contact-page-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.ecd-contact-details {
	background: #f8f8f8;
	padding: 40px;
	border-radius: 12px;
}

.ecd-contact-details h3 {
	color: #2aa198;
	margin-bottom: 30px;
	font-size: 1.8rem;
}

.ecd-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
}

.ecd-contact-item:last-child {
	margin-bottom: 0;
}

.ecd-contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #2aa198, #1d7a72);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ecd-contact-icon i {
	color: #ffffff;
	font-size: 1.2rem;
}

.ecd-contact-text h4 {
	color: #333333;
	margin-bottom: 8px;
	font-size: 1.2rem;
}

.ecd-contact-text p {
	color: #1a1a1a;
	margin-bottom: 5px;
	line-height: 1.5;
}

.ecd-contact-text a {
	color: #2aa198;
	text-decoration: none;
	transition: color 0.3s ease;
}

.ecd-contact-text a:hover {
	color: #1d7a72;
	text-decoration: underline;
}

/* ===================== Policy Pages Styles ===================== */
.ecd-policy-content {
	background: #ffffff;
	padding: 80px 0;
}

.ecd-policy-container {
	max-width: 900px;
	margin: 0 auto;
}

.ecd-policy-section {
	margin-bottom: 50px;
	padding: 40px;
	background: #f8f8f8;
	border-radius: 12px;
	border-left: 4px solid #2aa198;
}

.ecd-policy-section:last-child {
	margin-bottom: 0;
}

.ecd-policy-section h2 {
	color: #2aa198;
	margin-bottom: 20px;
	font-size: 1.8rem;
}

.ecd-policy-section h3 {
	color: #333333;
	margin-top: 25px;
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.ecd-policy-section p {
	color: #1a1a1a;
	line-height: 1.7;
	margin-bottom: 15px;
}

.ecd-policy-section ul {
	margin: 15px 0;
	padding-left: 0;
	list-style: none;
}

.ecd-policy-section li {
	margin-bottom: 10px;
	padding-left: 25px;
	position: relative;
	color: #1a1a1a;
	line-height: 1.6;
}

.ecd-policy-section li::before {
	content: '•';
	color: #2aa198;
	font-size: 1.3rem;
	position: absolute;
	left: 8px;
	top: 0;
}

.ecd-policy-section strong {
	color: #333333;
	font-weight: 600;
}

.ecd-policy-contact {
	background: #2aa198;
	color: #ffffff;
	padding: 30px;
	border-radius: 8px;
	margin-top: 30px;
}

.ecd-policy-contact h3 {
	color: #ffffff;
	margin-bottom: 15px;
}

.ecd-policy-contact p {
	color: #ffffff;
	margin-bottom: 8px;
}

.ecd-policy-contact a {
	color: #ffffff;
	text-decoration: underline;
}

/* ===================== Utility Classes ===================== */
.ecd-text-center {
	text-align: center;
}

.ecd-text-left {
	text-align: left;
}

.ecd-text-right {
	text-align: right;
}

.ecd-mb-0 {
	margin-bottom: 0;
}

.ecd-mb-1 {
	margin-bottom: 1rem;
}

.ecd-mb-2 {
	margin-bottom: 2rem;
}

.ecd-mt-0 {
	margin-top: 0;
}

.ecd-mt-1 {
	margin-top: 1rem;
}

.ecd-mt-2 {
	margin-top: 2rem;
}

.ecd-hidden {
	display: none;
}

.ecd-visible {
	display: block;
}

.ecd-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ===================== Print Styles ===================== */
@media print {
	.ecd-header,
	.ecd-footer,
	.ecd-cookie-banner,
	.ecd-mobile-toggle {
		display: none;
	}

	.ecd-section {
		padding: 20px 0;
	}

	.ecd-hero {
		height: auto;
		padding: 40px 0;
	}

	body {
		font-size: 12pt;
		line-height: 1.4;
		color: #000;
		background: #fff;
	}

	.ecd-btn {
		background: #000 !important;
		color: #fff !important;
		border: 1px solid #000 !important;
	}
}

/* ===================== High Contrast Mode ===================== */
@media (prefers-contrast: high) {
	.ecd-btn-primary {
		background: #000;
		border-color: #000;
		color: #fff;
	}

	.ecd-btn-primary:hover {
		background: #333;
		border-color: #333;
	}

	.ecd-form-input:focus,
	.ecd-form-textarea:focus {
		border-color: #000;
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
	}
}

/* ===================== Reduced Motion ===================== */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ===================== Loading States ===================== */
.ecd-loading {
	opacity: 0.6;
	pointer-events: none;
}

.ecd-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #e0e0e0;
	border-radius: 50%;
	border-top-color: #2aa198;
	animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ===================== Additional Form Styles ===================== */
.ecd-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.ecd-form-checkbox {
	width: 18px;
	height: 18px;
	accent-color: #2aa198;
}

.ecd-checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.ecd-checkbox-label {
	font-size: 0.95rem;
	color: #1a1a1a;
	line-height: 1.5;
	cursor: pointer;
}

.ecd-success-message {
	background: #d4edda;
	color: #155724;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	border: 1px solid #c3e6cb;
	display: none;
}

.ecd-success-message.show {
	display: block;
}

/* ===================== Responsive Design ===================== */

@media (max-width: 1050px) {
	.ecd-mobile-toggle {
		display: block;
	}

	.ecd-nav {
		position: fixed;
		top: 74px;
		left: 0;
		width: 100%;
		height: calc(100vh - 70px);
		background: rgba(248, 248, 248, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		padding: 30px 20px;
		gap: 0;
		transform: translateX(-100%);
		opacity: 0;
		display: none;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 999;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	}

	.ecd-nav.ecd-nav-open {
		transform: translateX(0);
		opacity: 1;
		display: flex;
		visibility: visible;
	}

	.ecd-nav-link {
		padding: 20px 0;
		font-size: 1.2rem;
		font-weight: 600;
		border-bottom: 1px solid #e0e0e0;
		text-align: center;
		transition: all 0.3s ease;
	}

	.ecd-nav-link:last-child {
		border-bottom: none;
	}

	.ecd-nav-link:hover {
		background: #ffffff;
		color: #2aa198;
		padding-left: 10px;
		padding-right: 10px;
		border-radius: 8px;
	}

	.ecd-nav-link.active {
		background: #2aa198;
		color: #ffffff;
		border-radius: 8px;
		margin: 0 10px;
	}

	.ecd-nav-link::after {
		display: none;
	}

	.ecd-header-contact {
		display: none;
	}

	.ecd-header-container {
		padding: 15px 20px;
	}

	.ecd-logo {
		font-size: 1.5rem;
	}
}

@media (max-width: 1024px) {
	.ecd-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.ecd-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.ecd-advantages-grid {
		grid-template-columns: 1fr;
	}

	.ecd-catalog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ecd-contact-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ecd-footer-content {
		grid-template-columns: repeat(2, 1fr);
	}

	.ecd-mission-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ecd-team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.ecd-hero-content {
		padding: 0;
		margin: 0 20px;
	}

	.ecd-hero-title {
		font-size: 2.5rem;
	}

	.ecd-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.ecd-grid-2,
	.ecd-grid-3,
	.ecd-grid-4 {
		grid-template-columns: 1fr;
	}

	.ecd-catalog-grid {
		grid-template-columns: 1fr;
	}

	.ecd-footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.ecd-company-stats {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.ecd-team-grid {
		grid-template-columns: 1fr;
	}

	.ecd-service-features {
		grid-template-columns: 1fr;
	}

	.ecd-contact-page-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ecd-cookie-banner {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.ecd-cookie-text {
		margin-right: 0;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.ecd-page-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 480px) {
	.ecd-hero-title {
		font-size: 2rem;
	}

	.ecd-section {
		padding: 60px 0;
	}

	.ecd-advantage-card,
	.ecd-form-container,
	.ecd-contact-details {
		padding: 25px 20px;
	}

	.ecd-company-stats {
		gap: 15px;
	}

	.ecd-stat-item {
		padding: 20px 15px;
	}

	.ecd-process-step {
		padding: 20px;
	}

	.ecd-process-number {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.ecd-faq-question {
		padding: 20px;
		font-size: 1.1rem;
	}

	.ecd-faq-answer-content {
		padding: 0 20px 20px 20px;
	}

	.ecd-policy-section {
		padding: 25px 20px;
	}
}

.ecd-contact-page {
	background: #ffffff;
	padding: 80px 0;
}

.ecd-contact-page-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.ecd-contact-description {
	color: #1a1a1a;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 30px;
}

.ecd-contact-details {
	background: #f8f8f8;
	padding: 40px;
	border-radius: 12px;
}

.ecd-contact-details h3 {
	color: #2aa198;
	margin-bottom: 30px;
	font-size: 1.8rem;
}

.ecd-contact-intro {
	color: #1a1a1a;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 30px;
}

.ecd-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
}

.ecd-contact-item:last-child {
	margin-bottom: 0;
}

.ecd-contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #2aa198, #1d7a72);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ecd-contact-icon i {
	color: #ffffff;
	font-size: 1.2rem;
}

.ecd-contact-text h4 {
	color: #333333;
	margin-bottom: 8px;
	font-size: 1.2rem;
}

.ecd-contact-text p {
	color: #1a1a1a;
	margin-bottom: 5px;
	line-height: 1.5;
}

.ecd-contact-text small {
	color: #666666;
	font-size: 0.9rem;
	display: block;
	margin-top: 5px;
}

.ecd-contact-text a {
	color: #2aa198;
	text-decoration: none;
	transition: color 0.3s ease;
}

.ecd-contact-text a:hover {
	color: #1d7a72;
	text-decoration: underline;
}

.ecd-contact-features {
	margin-top: 30px;
}

.ecd-contact-features h4 {
	color: #333333;
	margin-bottom: 20px;
	font-size: 1.3rem;
}

.ecd-contact-features ul {
	list-style: none;
	padding: 0;
}

.ecd-contact-features li {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	color: #1a1a1a;
	font-size: 1rem;
}

.ecd-contact-features i {
	color: #2aa198;
	margin-right: 12px;
	font-size: 1rem;
}

/* ===================== Subdomain Page Styles ===================== */
.ecd-subdomain-hero {
	background: linear-gradient(135deg, #2aa198, #1d7a72);
	color: #ffffff;
	padding: 120px 0 80px;
	text-align: center;
}

.ecd-subdomain-hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.ecd-subdomain-title {
	font-size: 3.5rem;
	margin-bottom: 20px;
	font-weight: 700;
	color: #ffffff;
}

.ecd-subdomain-subtitle {
	font-size: 1.3rem;
	opacity: 0.95;
	margin-bottom: 30px;
	line-height: 1.6;
}

.ecd-subdomain-content {
	background: #ffffff;
	padding: 80px 0;
}

.ecd-subdomain-intro {
	max-width: 900px;
	margin: 0 auto 60px;
	text-align: center;
}

.ecd-subdomain-intro p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #1a1a1a;
	margin-bottom: 25px;
}

.ecd-service-categories {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 80px;
}

.ecd-category-card {
	background: #f8f8f8;
	padding: 40px 30px;
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.ecd-category-card:hover {
	background: #ffffff;
	border-color: #2aa198;
	box-shadow: 0 8px 25px rgba(42, 161, 152, 0.15);
	transform: translateY(-5px);
}

.ecd-category-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #2aa198, #1d7a72);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
}

.ecd-category-icon i {
	color: #ffffff;
	font-size: 2rem;
}

.ecd-category-card h3 {
	color: #333333;
	margin-bottom: 20px;
	font-size: 1.5rem;
}

.ecd-category-card p {
	color: #1a1a1a;
	line-height: 1.6;
	margin-bottom: 25px;
}

.ecd-category-features {
	list-style: none;
	padding: 0;
	text-align: left;
}

.ecd-category-features li {
	color: #1a1a1a;
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
	font-size: 0.95rem;
}

.ecd-category-features li::before {
	content: '•';
	color: #2aa198;
	font-size: 1.2rem;
	position: absolute;
	left: 0;
	top: 0;
}

.ecd-expertise-section {
	background: #f8f8f8;
	padding: 60px;
	border-radius: 12px;
	margin-bottom: 60px;
}

.ecd-expertise-section h3 {
	color: #333333;
	text-align: center;
	margin-bottom: 40px;
	font-size: 2rem;
}

.ecd-expertise-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: center;
}

.ecd-expertise-text p {
	color: #1a1a1a;
	line-height: 1.7;
	margin-bottom: 20px;
	font-size: 1.1rem;
}

.ecd-expertise-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.ecd-stat-highlight {
	background: #ffffff;
	padding: 25px 20px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ecd-stat-number {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	color: #2aa198;
	margin-bottom: 5px;
}

.ecd-stat-label {
	color: #333333;
	font-size: 0.9rem;
	font-weight: 500;
}

.ecd-quality-section {
	max-width: 1000px;
	margin: 0 auto;
}

.ecd-quality-section h3 {
	color: #333333;
	text-align: center;
	margin-bottom: 30px;
	font-size: 2rem;
}

.ecd-quality-section > p {
	text-align: center;
	color: #1a1a1a;
	font-size: 1.2rem;
	line-height: 1.7;
	margin-bottom: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.ecd-quality-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.ecd-quality-item {
	background: #f8f8f8;
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
}

.ecd-quality-item:hover {
	background: #ffffff;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.ecd-quality-item i {
	font-size: 2.5rem;
	color: #2aa198;
	margin-bottom: 20px;
}

.ecd-quality-item h4 {
	color: #333333;
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.ecd-quality-item p {
	color: #1a1a1a;
	line-height: 1.6;
	margin-bottom: 0;
}

.ecd-page-header {
	background: linear-gradient(135deg, #f8f8f8 0%, #eaeaea 100%);
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ecd-page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><g fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>')
		repeat;
	pointer-events: none;
}

.ecd-page-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 1rem;
	position: relative;
	z-index: 1;
}

.ecd-page-subtitle {
	font-size: 1.25rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	position: relative;
	z-index: 1;
}

/* Policy Content Layout */
.ecd-policy-content {
	padding: 80px 0;
	background: #fafafa;
}

.ecd-policy-wrapper {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Policy Sidebar */
.ecd-policy-sidebar {
	position: sticky;
	top: 120px;
	height: fit-content;
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #e5e5e5;
}

.ecd-policy-sidebar h2 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #2aa198;
}

.ecd-policy-nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ecd-policy-nav-link {
	display: block;
	padding: 12px 15px;
	color: #666;
	text-decoration: none;
	font-size: 0.9rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.ecd-policy-nav-link:hover,
.ecd-policy-nav-link:focus {
	background: #f0f9f8;
	color: #2aa198;
	border-left-color: #2aa198;
	transform: translateX(5px);
}

/* Policy Main Content */
.ecd-policy-main {
	background: white;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #e5e5e5;
}

.ecd-policy-intro {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 8px;
	margin-bottom: 40px;
	border-left: 4px solid #2aa198;
}

.ecd-policy-intro p {
	margin: 0 0 10px;
	font-size: 0.95rem;
	color: #666;
}

.ecd-policy-intro p:last-child {
	margin-bottom: 0;
	font-size: 1rem;
	color: #333;
	font-weight: 500;
}

/* Policy Sections */
.ecd-policy-section {
	margin-bottom: 50px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e5e5e5;
}

.ecd-policy-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.ecd-policy-section h2 {
	font-size: 2rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid #2aa198;
	position: relative;
}

.ecd-policy-section h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin: 30px 0 15px;
}

.ecd-policy-section p {
	font-size: 1rem;
	line-height: 1.7;
	color: #444;
	margin: 0 0 20px;
}

.ecd-policy-section ul {
	margin: 0 0 25px;
	padding-left: 0;
	list-style: none;
}

.ecd-policy-section li {
	position: relative;
	padding: 8px 0 8px 30px;
	font-size: 1rem;
	line-height: 1.6;
	color: #444;
}

.ecd-policy-section li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 8px;
	color: #2aa198;
	font-weight: bold;
	font-size: 1.1rem;
}

.ecd-policy-section li strong {
	color: #1a1a1a;
	font-weight: 600;
}

/* Contact Info in Policy */
.ecd-contact-info {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 8px;
	margin-top: 30px;
	border: 1px solid #e5e5e5;
}

.ecd-contact-info p {
	margin: 0 0 15px;
	font-size: 0.95rem;
	line-height: 1.6;
}

.ecd-contact-info p:last-child {
	margin-bottom: 0;
}

.ecd-contact-info strong {
	color: #1a1a1a;
	font-weight: 600;
}

.ecd-contact-info a {
	color: #2aa198;
	text-decoration: none;
	font-weight: 500;
}

.ecd-contact-info a:hover {
	text-decoration: underline;
}

/* Cookie Table */
.ecd-cookie-table-wrapper {
	overflow-x: auto;
	margin: 25px 0;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.ecd-cookie-table {
	width: 100%;
	border-collapse: collapse;
	background: white;
	font-size: 0.9rem;
}

.ecd-cookie-table th {
	background: #333333;
	color: white;
	padding: 15px 12px;
	text-align: left;
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ecd-cookie-table td {
	padding: 12px;
	border-bottom: 1px solid #e5e5e5;
	vertical-align: top;
}

.ecd-cookie-table tr:last-child td {
	border-bottom: none;
}

.ecd-cookie-table tr:nth-child(even) {
	background: #f8f9fa;
}

.ecd-cookie-table td:first-child {
	font-weight: 600;
	color: #1a1a1a;
	font-family: 'Courier New', monospace;
}

/* Policy Links */
.ecd-policy-content a {
	color: #2aa198;
	text-decoration: none;
	font-weight: 500;
	word-wrap: break-word;
	transition: all 0.3s ease;
}

.ecd-policy-content a:hover,
.ecd-policy-content a:focus {
	color: #1a7a73;
	text-decoration: underline;
}

/* ===================== Enhanced Responsive Design ===================== */
@media (max-width: 1024px) {
	.ecd-contact-page-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ecd-service-categories {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.ecd-expertise-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ecd-expertise-stats {
		grid-template-columns: repeat(4, 1fr);
	}

	.ecd-quality-features {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	.ecd-policy-wrapper {
		grid-template-columns: 1fr;
	}

	.ecd-policy-sidebar {
		display: none;
	}
}

@media (max-width: 768px) {
	.ecd-contact-details {
		padding: 30px 20px;
	}

	.ecd-contact-item {
		flex-direction: column;
		text-align: center;
		align-items: center;
		gap: 15px;
	}

	.ecd-subdomain-title {
		font-size: 2.5rem;
	}

	.ecd-subdomain-content {
		padding: 60px 0;
	}

	.ecd-category-card {
		padding: 30px 20px;
	}

	.ecd-expertise-section {
		padding: 40px 30px;
	}

	.ecd-expertise-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.ecd-quality-item {
		padding: 25px 20px;
	}
}

@media (max-width: 480px) {
	.ecd-contact-details {
		padding: 25px 15px;
	}

	.ecd-policy-wrapper {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.ecd-policy-section h2 {
		font-size: 1.5rem;
		word-wrap: break-word;
	}

	.ecd-policy-main {
		padding: 2rem;
	}

	.ecd-contact-icon {
		width: 40px;
		height: 40px;
	}

	.ecd-contact-icon i {
		font-size: 1rem;
	}

	.ecd-subdomain-title {
		font-size: 2rem;
	}

	.ecd-subdomain-hero {
		padding: 100px 0 60px;
	}

	.ecd-category-card {
		padding: 25px 15px;
	}

	.ecd-category-icon {
		width: 60px;
		height: 60px;
	}

	.ecd-category-icon i {
		font-size: 1.5rem;
	}

	.ecd-expertise-section {
		padding: 30px 20px;
	}

	.ecd-expertise-stats {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.ecd-stat-highlight {
		padding: 20px 15px;
	}

	.ecd-quality-item i {
		font-size: 2rem;
	}

	.ecd-page-title {
		font-size: 2rem;
	}
}
