@font-face {
	font-family: Estedad;
	src: url('../../font/Estedad-Regular.woff2') format('woff2');
	font-display: swap;
}
/*!normalize.cssv8.0.1|MITLicense|github.com/necolas/normalize.css*/
html {
	scroll-behavior: smooth;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%
}

body {
  background: var(--color2);
  margin: 0;
  line-height: 2.2;
  font-family: Estedad
}

main {
	display: block;
	margin-top: 85px
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; 
}

.cta-buttons .btn {
  flex: 1 1 auto;
  min-width: 140px;
  text-align: center;
}

.logoes img{
	width:100%;
	max-width:256px;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #33385d;
  color: #fff;
  font-size: 20px;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  display: none;
  width:45px;
  height:45px;
  z-index: 999;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: #e97f09;
}

audio{
	width:100%;
	max-width:610px;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 2rem 0;
}
.pagination .btn {
    background: #f4f4f4;
    color: #333;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    min-width: 40px;
    text-align: center;
}
.pagination .btn:hover {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}
.pagination .btn.active {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
    cursor: default;
}
  
h1 {
	font-size: 2em;
	margin: 0.67em0
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible
}

pre {
	font-family: monospace, monospace;
	font-size: 1em
}

a {
	background-color: transparent
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underlinedotted
}

b,
strong {
	font-weight: bolder
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sub {
	bottom: -0.25em
}

sup {
	top: -0.5em
}

img {
	border-style: none
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0
}

button,
input {
	overflow: visible
}

button,
select {
	text-transform: none
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1pxdottedButtonText
}

fieldset {
	padding: 0.35em0.75em0.625em
}

legend {
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal
}

progress {
	vertical-align: baseline
}

textarea {
	overflow: auto
}

[type="checkbox"],
[type="radio"] {
	padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto
}

[type="search"] {
	outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

details {
	display: block
}

summary {
	display: list-item
}

template {
	display: none
}

[hidden] {
	display: none
}

* {
	box-sizing: border-box
}

/*Variables Start*/
:root {
	--primary-color: #000000;
	--secondary-color: #F1F1F1;
	--third-color:#33385d;
	--background-light: #f4f4f4;
	--button-hover:rgb(57, 211, 228);
	--primary-link: #ffffff;
	--secondary-link:#0066cc;
	--icon:rgb(83, 117, 254);
	--button: #1aeaeb;
}

/*Menu Start*/
/*https://www.cssscript.com/responsive-mega-menu*/
/*Animations*/
@-webkit-keyframes slideLeft {
  0% { opacity: 0; -webkit-transform: translateX(-100%); transform: translateX(-100%); }
  100% { opacity: 1; -webkit-transform: translateX(0); transform: translateX(0); }
}
@keyframes slideLeft {
  0% { opacity: 0; -webkit-transform: translateX(-100%); transform: translateX(-100%); }
  100% { opacity: 1; -webkit-transform: translateX(0); transform: translateX(0); }
}
@-webkit-keyframes slideRight {
  0% { opacity: 1; -webkit-transform: translateX(0); transform: translateX(0); }
  100% { opacity: 0; -webkit-transform: translateX(-100%); transform: translateX(-100%); }
}
@keyframes slideRight {
  0% { opacity: 1; -webkit-transform: translateX(0); transform: translateX(0); }
  100% { opacity: 0; -webkit-transform: translateX(-100%); transform: translateX(-100%); }
}

a,
button {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	cursor: pointer;
	border: none;
	outline: none;
	background: none;
	text-decoration: none;
}

@media only screen and (max-width: 768px) {

	a,
	button {
		cursor: default !important;
		border: none;
		outline: none;
	}
}

.brand {
	margin-right: 1rem;
	border: none;
	outline: none;
}

.header {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0 auto;
	z-index: 999;
	border: none;
	outline: none;
	background: #fafafa;
	-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}




.header .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row-reverse;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header-item-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 17%;
	flex: 0 0 17%;
	justify-content: flex-start;
	padding: 0.3rem;
}

.header-item-left img {
	margin-bottom: -6px;
	margin-left: 1rem;
}

.header-item-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 66%;
	flex: 0 0 66%;
}

.header-item-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 17%;
	flex: 0 0 17%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-start;
}

.header-item-right .menu-icon {
	font-size: 1.35rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 1rem;
	margin-left: 1rem;
	border: none;
	outline: none;
	color: #121212;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header .menu>ul>li {
	display: inline-block;
	line-height: 3.125rem;
	margin-left: 1.5rem;
}

.header .menu>ul>li svg {
	width: 64px;
	display: block;
	margin: auto;
	fill: var(--button);
}

.header .menu>ul>li>a {
	position: relative;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	border: none;
	outline: none;
	color: #121212;
	text-transform: capitalize;
	text-rendering: optimizeLegibility;
	-webkit-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}

.header .menu>ul>li .menu-subs {
	position: absolute;
	width: 100%;
	height: auto;
	margin-top: 1.75rem;
	padding: 1rem 2rem;
	border: none;
	outline: none;
	z-index: 500;
	opacity: 0;
	visibility: hidden;
	border-radius: 0.25rem;
	border-top: 3px solid var(--third-color);
	background: #fafafa;
	-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.header .menu>ul>li .menu-subs>ul>li {
	line-height: 1;
}

.header .menu>ul>li .menu-subs>ul>li>a {
	display: inline-block;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	padding: 0.75rem 0;
	border: none;
	outline: none;
	color: #121212;
	text-transform: capitalize;
	text-rendering: optimizeLegibility;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header .menu>ul>li .menu-column-1 {
	min-width: 16rem;
	max-width: 20rem;
}

.header .menu>ul>li .menu-subs.menu-mega {
	left: 50%;
	right: auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li {
	display: block;
	line-height: 1;
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
	display: inline-block;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	padding: 0.5rem 0;
	border: none;
	outline: none;
	color: #121212;
	text-transform: capitalize;
	text-rendering: optimizeLegibility;
	-webkit-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}

.header .menu>ul>li .menu-subs.menu-column-4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 68rem;
	width: 100%;
	padding: 1.25rem 1rem;
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	padding: 0 1rem;
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item .title {
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	padding: 0.75rem 0;
	border: none;
	outline: none;
	color: var(--secondary-link);
	text-transform: uppercase;
	text-rendering: optimizeLegibility;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
	text-align: center;
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item img.responsive {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin-top: 0.75rem;
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: middle;
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a:hover,
.header .menu>ul>li .menu-subs>ul>li>a:hover {
	color: var(--secondary-link);
}

.header-item-right a:hover,
.header .menu>ul>li:hover>a {
	color: var(--secondary-link);
}

@media only screen and (min-width: 993px) {
	.header .menu>ul>li.menu-item-has-children:hover .menu-subs {
		margin-top: 0.5rem;
		opacity: 1;
		visibility: visible;
	}
}

.menu-mobile-header,
.menu-mobile-trigger {
	display: none;
}

@media only screen and (max-width: 992px) {
	.header-item-center {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}

	.header-item-left,
	.header-item-right {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		flex-direction: row; padding: 1.2rem;
	}

	.wrapper {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.header .menu-mobile-trigger {
		position: relative;
		display: block;
		cursor: pointer;
		width: 1.75rem;
		height: 1rem;
		border: none;
		outline: none;
		margin-right: 1.25rem;
		background: none;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: 0.35s ease-in-out;
		-o-transition: 0.35s ease-in-out;
		transition: 0.35s ease-in-out;
	}

	.header .menu-mobile-trigger span {
		display: block;
		position: absolute;
		width: 100%;
		height: 2px;
		left: 0;
		border: none;
		outline: none;
		opacity: 1;
		border-radius: 0.25rem;
		background: #121212;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: 0.25s ease-in-out;
		-o-transition: 0.25s ease-in-out;
		transition: 0.25s ease-in-out;
	}

	.header .menu-mobile-trigger span:nth-child(1) {
		top: 0;
	}

	.header .menu-mobile-trigger span:nth-child(2),
	.header .menu-mobile-trigger span:nth-child(3) {
		top: 0.5rem;
	}

	.header .menu-mobile-trigger span:nth-child(4) {
		top: 1rem;
	}

	.header-item-right {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		flex-direction: row-reverse;
		padding: 1.2rem;
		margin-right: 0.2rem;
		border-radius: 5rem;
	}

	.header .menu {
		position: fixed;
		top: 0;
		left: 0;
		right: auto;
		width: 20rem;
		height: 100%;
		z-index: 1099;
		overflow: hidden;
		background: #fafafa;
		-webkit-transform: translate(100%);
		-ms-transform: translate(100%);
		transform: translate(-100%);
		-webkit-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
	}

	.header .menu.active {
		-webkit-transform: translate(0);
		-ms-transform: translate(0);
		transform: translateX(0);
	}

	.header .menu>ul>li {
		display: block;
		line-height: 1;
		margin: 0;
	}

	.header .menu>ul>li>a {
		display: block;
		line-height: 3.125rem;
		height: 3.125rem;
		padding: 0 3.125rem 0 1rem;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

	.header .menu>ul>li>a i.ion {
		position: absolute;
		font-size: 1.25rem;
		line-height: 3.125rem;
		top: 0;
		left: 0;
		width: 3.125rem;
		height: 3.125rem;
		text-align: center;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
	}

	.header .menu .menu-mobile-header {
		position: relative;
		position: -webkit-sticky;
		position: sticky;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		top: 0;
		height: 3.125rem;
		z-index: 501;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		background: #fafafa;
	}

	.header .menu .menu-mobile-header .menu-mobile-arrow {
		display: none;
		font-size: 1.25rem;
		line-height: 3.125rem;
		width: 3.125rem;
		height: 3.125rem;
		cursor: pointer;
		border-right: 1px solid rgba(0, 0, 0, 0.1);
		color: #121212;
		text-align: center;
	}

	.header .menu .menu-mobile-header.active .menu-mobile-arrow {
		display: block;
		transform: rotate(180deg);
	}

	.header .menu .menu-mobile-header .menu-mobile-title {
		font-family: inherit;
		font-size: 1rem;
		font-weight: 500;
		line-height: inherit;
		color: #121212;
		text-transform: capitalize;
		text-rendering: optimizeLegibility;
	}

	.header .menu .menu-mobile-header .menu-mobile-close {
		font-size: 2.25rem;
		line-height: 3.125rem;
		cursor: pointer;
		width: 3.125rem;
		height: 3.125rem;
		border-left: 1px solid rgba(0, 0, 0, 0.1);
		color: #121212;
		text-align: center;
	}

	.header .menu .menu-section {
		height: 100%;
		overflow-y: auto;
		overflow-x: hidden;
	}

	.header .menu>ul>li .menu-subs {
		position: absolute;
		display: none;
		top: 0;
		left: 0;
		max-width: none;
		min-width: auto;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 1rem;
		padding-top: 4rem;
		opacity: 1;
		overflow-y: auto;
		visibility: visible;
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	.header .menu>ul>li .menu-subs.menu-mega {
		position: absolute;
		display: none;
		top: 0;
		left: 50%;
		max-width: none;
		min-width: auto;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 1rem;
		padding-top: 4rem;
		opacity: 1;
		overflow-y: auto;
		visibility: visible;
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(-50%);
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	.header .menu>ul>li .menu-subs.active {
		display: block;
	}

	.header .menu>ul>li .menu-subs.menu-column-4>.list-item {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		padding: 0rem;
	}

	.header .menu>ul>li .menu-subs.menu-column-4>.list-item img.responsive {
		margin-top: 0;
	}

	.header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
		margin-bottom: 1.25rem;
	}

	.header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center:last-child .title {
		margin-bottom: 0rem;
	}

	.header .menu>ul>li .menu-subs>ul>li>a {
		display: block;
	}

	.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul {
		margin-bottom: 1rem;
	}

	.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
		display: block;
	}

	.overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		opacity: 0;
		visibility: hidden;
		background: rgba(0, 0, 0, 0.55);
		-webkit-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
	}

	.overlay.active {
		opacity: 1;
		visibility: visible;
	}
}


/*Menu End*/

/*FAQ Start*/
section[aria-label="FAQ-Controls"] {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content:center;
  flex-wrap: wrap;
}

#search {
  flex: 1 1 260px;
  padding: 10px 12px;
  background: #f1f1ff;
  border: 1px solid #b1b1b1;
  border-radius: 10px;
  font-size: .95rem;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
}
#search:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}
#faq {
  display: grid;
  gap: var(--gap);
  text-align: right;
}

details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: clip;
  transition: border-color var(--trans), background var(--trans);
}


summary {
  list-style: none;
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 14px 16px;
  font-size: var(--summary-size);
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  position: relative;
}

summary::-webkit-details-marker { display: none; }
summary::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border: 2px solid var(--accent);
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent-weak) 35%, transparent);
  flex: 0 0 18px;
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--accent) 25%, transparent);
}
summary::after {
  content: "";
  position: absolute;
  inset-inline-end: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(0deg);
  border-inline-end: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transition: transform var(--trans), border-color var(--trans);
  transform-origin: 55% 55%;
}
details[open] summary::after {
  transform: translateY(-50%) rotate(-135deg);
  border-color: var(--accent);
}
summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: calc(var(--radius) - 2px);
}

details > *:not(summary) {
  padding: 0 16px 16px;
  font-size: var(--body-size);
  color: var(--fg);
}
details p {
  line-height: 1.9;
  margin: 0.4rem 0 0;
}
details ul, details ol {
  margin: .2rem 0 0;
  padding: 0 1.2rem 0 0;
}
details a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed color-mix(in srgb, var(--accent) 50%, transparent);
}
details a:hover { text-decoration: underline; }

details[open] {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  background: color-mix(in srgb, var(--card) 90%, var(--accent-weak) 10%);
}

[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

@media print {
  #search, #openAll, #closeAll { display: none !important; }
  details { box-shadow: none; border-color: #ccc; background: #fff; }
  details[open] summary::after { display: none; }
}
/*FAQ End*/

/*Grid Start*/
/*SIMPLE GRID (C) ZACH COLE 2016 UNIVERSAL - mit */
.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.row {
	position: relative;
	width: 100%;
}

.row [class^="col"] {
	float: right;
	min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
	width: 100%
}

/*Spacing Start*/
.m {
	margin: 1rem
}

.mt {
	margin-top: 1rem
}

.mb {
	margin-bottom: 1rem
}

.ml {
	margin-left: 1rem
}

.mr {
	margin-right: 1rem
}

.p {
	padding: 1rem
}

.pt {
	padding-top: 1rem
}

.pb {
	padding-bottom: 1rem
}

.pl {
	padding-left: 1rem
}

.pr {
	padding-right: 1rem
}

/*Direction Start*/
.ltr {
	direction: ltr
}

.rtl {
	direction: rtl
}

/*Align Start*/
.tc {
	text-align: center
}

.tl {
	text-align: left
}

.tr {
	text-align: right
}

.tj {
	text-align: justify
}

/*Typography Start*/
.b {
	font-weight: bold
}

em {
	color: #159e35;
}

/*Custom CSS Start*/

@keyframes zoom-play {
	0% {
		transform: scale(1)
	}

	50% {
		transform: translate(0, 8px)
	}

	100% {
		transform: scale(1)
	}
}

.slider {
	width: 100%;
	margin: auto;
	padding: 2rem 0;
	color:var(--secondary-color);
	background: var(--third-color);
	background-size: cover;
	background-position: center;
	line-height: 3;
	text-align: center;
}

.slider img {
	width: 100%;
	max-width: 300px;
	animation: zoom-play infinite ease-in 3s;
}

#datetime {
	word-spacing: -1px;
	text-align: center;
}

body {
	font-family: Estedad, sans-serif;
	background-color: var(--background-color);
	color: var(--text-color);
	line-height: 1.6;
}

a {
	text-decoration: none;
}

ul {
	line-height: 2.5;
}

p {
	margin: 1rem;
	line-height: 2.5;
}

.img {
	width: 100%
}

.w-100 {
	width: 100%
}

.red {
	color: #FF0000
}

.green {
	color: #007f00
}

.orange {
	color: #f46d00
}

.shortcuts {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.shortcuts svg {
	fill: var(--icon);
	width: 96px;
}

.service {
	flex: 1 0 100%;
	padding: 2rem 0.5rem;
	margin: 1rem;
	background: #fcfcfc;
	border: 1px solid #e4e4e4;
	border-radius: 0.5rem;
	transition: background 0.3s;
	text-decoration: none;
	color: var(--primary-color);
}

.service:hover>svg {
	fill: #95f807
}

.service:hover {
	color: var(--secondary-link);
}

section {
	width:100%;
	margin:3rem auto;
	padding: 20px;
	text-align: center;
}

.service-box {
	background: var(--background-light);
	padding: 2rem;
	border-radius: 4px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
	margin: 4rem auto;
}

.service-box h2 {
	color: var(--primary-color);
}

.service-box p {
	font-size: 14px;
	margin: 10px 0;
	line-height: 2.5;
	text-align: justify;
}

/********************/
.posts {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 15px;
  padding: 10px;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden; 
}

.post {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  width: 100%; 
}

.post:hover {
  transform: translateY(-5px);
}

.post h2 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.post h2 a {
  color: #333;
  text-decoration: none;
}

.post h2 a:hover {
  color: #0066cc;
}

.date {
  color: #666;
  font-size: 0.85em;
  margin: 5px 0;
}

.summary-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em;
  max-height: 4.5em;
  font-size: 0.9rem;
}

.post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-top: auto;
}

/* Tablet styles */
@media (min-width: 768px) {
  .posts {
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    padding: 20px;
  }

  .post h2 {
    font-size: 1.3rem;
  }

  .post img {
    height: 200px;
  }

  .summary-text {
    font-size: 1rem;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  .posts {
    grid-template-columns: repeat(3, 1fr); 
    max-width: 1200px;
    margin: 0 auto;
  }

  .post h2 {
    font-size: 1.4rem;
  }

  .post img {
    height: 220px;
  }
}

/* Mobile First Grid System */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  overflow-x: hidden;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  width: 100%;
}

[class^="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 1rem;
}

/* Mobile First Typography */
h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p { font-size: 1rem; }

/* Mobile First Spacing */
.m { margin: 0.5rem; }
.mt { margin-top: 0.5rem; }
.mb { margin-bottom: 0.5rem; }
.ml { margin-left: 0.5rem; }
.mr { margin-right: 0.5rem; }

.p { padding: 0.5rem; }
.pt { padding-top: 0.5rem; }
.pb { padding-bottom: 0.5rem; }
.pl { padding-left: 0.5rem; }
.pr { padding-right: 0.5rem; }

/* Mobile First Services */
.service {
  flex: 1 0 100%;
  margin: 0.5rem;
  padding: 1rem;
}

/* Mobile First Sections */
section {
  width: 100%;
  margin: 2rem auto;
  padding: 15px;
  border: none;
}

/* Tablet Breakpoint */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .col-md-6 { width: 50%; }
  .col-md-4 { width: 33.333333%; }
  .col-md-3 { width: 25%; }

  /* Tablet Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }

  /* Tablet Spacing */
  .m { margin: 0.75rem; }
  .mt { margin-top: 0.75rem; }
  .mb { margin-bottom: 0.75rem; }
  .ml { margin-left: 0.75rem; }
  .mr { margin-right: 0.75rem; }

  .p { padding: 0.75rem; }
  .pt { padding-top: 0.75rem; }
  .pb { padding-bottom: 0.75rem; }
  .pl { padding-left: 0.75rem; }
  .pr { padding-right: 0.75rem; }

  .service {
    flex: 1 1 45%;
  }

  section {
    width: 90%;
    padding: 25px;
    margin: 2.5rem auto;
  }
}

/* Desktop Breakpoint */
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }

  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-6 { width: 50%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-9 { width: 75%; }
  .col-lg-12 { width: 100%; }

  /* Desktop Typography */
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }

  /* Desktop Spacing */
  .m { margin: 1rem; }
  .mt { margin-top: 1rem; }
  .mb { margin-bottom: 1rem; }
  .ml { margin-left: 1rem; }
  .mr { margin-right: 1rem; }

  .p { padding: 1rem; }
  .pt { padding-top: 1rem; }
  .pb { padding-bottom: 1rem; }
  .pl { padding-left: 1rem; }
  .pr { padding-right: 1rem; }

  .service {
    flex: 1 1 20%;
  }

  section {
    width: 80%;
    max-width: 1200px;
    padding: 40px;
    margin: 3rem auto;
    border-radius: 1rem;
    border: 1px solid #dcdcdc;
  }
}

/* Large Desktop Breakpoint */

.btn {
	display: inline-block;
	padding: 0.75rem 1rem;
	background: var(--secondary-link);
	color: var(--primary-link);
	text-decoration: none;
	border-radius: 2px;
	transition: background 0.3s ease;
	min-width:170px;
}

.btn:hover {
	background: var(--button-hover);
}

.special-offer {
	background: var(--text-color);
	color: var(--primary-color);
	text-align: center;
	padding: 20px;
	margin: 40px 0;
}

.special-offer h2 {
	color: var(--primary-color);
	display: block;
	padding: 1rem;
}

.social {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.social svg {
	margin: var(--basemargin);
	flex-wrap: wrap;
	background: var(--secondary-color);
	padding: 8px;
	border-radius: 4px;
}

.telegram {
	color: #269eda;
}

.whatsapp {
	color: #00cc55;
}

.instagram {
	color: #aa55cc;
}

.youtube {
	color: #FF0000;
}

.phone {
	color: #5e88f3;
}

.sms {
	color: #ffaf00;
}

.media {
	background: var(--color5);
	padding: var(--basePadding);
	display: flex;
	justify-content: center;
	align-items: center;
}

.about {
	padding: 1rem;
	width: 90%;
	text-align: justify;
	margin: 2rem auto;
	border-top: 4px solid var(--button-hover);
}

.modern-footer {
	border-top:2px solid #f2f2f8;
    background-color: #f8f9fa;
    color: #333;
    padding: 4rem 0 0;
    position: relative;
    width: 100%;
}

.footer-top {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    padding: 1rem;
}

.footer-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
}

/* Contact Section Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #3498db;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #3498db;
}

.contact-item address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
}

/* Quick Links Section Ã¢â‚¬â€ LTR behavior and icon on the right */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    direction: rtl;               /* force LTR inside this widget */
}

.quick-links li {
    margin-bottom: 0.8rem;
}

/* Put icon on the right without changing HTML */
.quick-links a {
    /* remove that big black outline (was: box-shadow:0 0 0 3px #000;) */
    box-shadow: none;
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex-direction: row-reverse;  /* icon will appear after the text */
}

/* icon style */
.quick-links a i {
    font-size: 0.9rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

/* Hover: move to the right for LTR */
.quick-links a:hover {
    color: #3498db;
    transform: translateX(5px);   /* positive = move right */
}

.quick-links a:hover i {
    transform: translateX(3px);   /* icon moves slightly to the right too */
}


/* Certificates Section */
.certificates-grid {
    display: flex;
	flex-wrap:wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #555;
	flex:1 1 40%;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cert-item i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.cert-item span {
    font-size: 0.9rem;
}

/* Social Media */
.social-media {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.social-icon:hover {
    background-color: #3498db;
    color: #fff;
    transform: translateY(-3px);
}

/* About Section */
.footer-middle {
    background-color: #fff;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
	text-align:justify;
    color: #555;
    line-height: 1.8;
}

.departments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.department-item {
	text-align:justify;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.department-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.department-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #2c3e50;
    color: #fff;
    padding: 0.1rem 2rem;
    text-align: center;
	direction:ltr;
}

.footer-bottom-content {
	display:flex;
    margin: 0 auto;
	flex-direction:column;
	justify-content:space-between;
}

.footer-bottom p {
    margin: 0.5rem 0;
	font-size:13px;
}

.footer-bottom a {
    color: #34c8fb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .departments {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .quick-links a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        padding: 0 1rem;
    }
    
    .footer-middle {
        padding: 2rem 1rem;
    }
} 

@media only screen and (min-width:600px) {
	.container {
		width: 100%
	}

	.col-1s {
		width: 8.33%
	}

	.col-2s {
		width: 16.66%
	}

	.col-3s {
		width: 25%
	}

	.col-4s {
		width: 33.33%
	}

	.col-5s {
		width: 41.66%
	}

	.col-6s {
		width: 50%
	}

	.col-7s {
		width: 58.33%
	}

	.col-8s {
		width: 66.66%
	}

	.col-9s {
		width: 75%
	}

	.col-10s {
		width: 83.33%
	}

	.col-11s {
		width: 91.66%
	}

	.col-12s {
		width: 100%
	}

	.row::after {
		content: "";
		display: table;
		clear: both;
	}

	.hidden-s {
		display: none
	}

	.service {
		flex: 1 1 40%;
	}
	.slider img {
		width: 100%;
		max-width: 300px;
		animation: zoom-play infinite ease-in 3s;
	}
}

@media only screen and (min-width:768px) {
	.col-1 {
		width: 8.33%
	}

	.col-2 {
		width: 16.66%
	}

	.col-3 {
		width: 25%
	}

	.col-4 {
		width: 33.33%
	}

	.col-5 {
		width: 41.66%
	}

	.col-6 {
		width: 50%
	}

	.col-7 {
		width: 58.33%
	}

	.col-8 {
		width: 66.66%
	}

	.col-9 {
		width: 75%
	}

	.col-10 {
		width: 83.33%
	}

	.col-11 {
		width: 91.66%
	}

	.col-12 {
		width: 100%
	}

	.hidden-s {
		display: block
	}

	.service {
		flex: 1 1 30%;
	}

	.img {
		width: 100%;
		max-width: 768px
	}
}

@media only screen and (min-width:1024px) {
	.container {
		width: 90%;
		max-width: 60rem
	}

	.service {
		flex: 1 1 20%;
	}

	.img {
		width: 100%;
		max-width: 1024px
	}

	.about {
		margin: 1rem auto;
		padding: 1rem 6rem;
	}
	section {
		width:80%;
		margin:3rem auto;
		border-radius:1rem;
		border:1px solid #dcdcdc;
		padding: 40px;
		text-align: center;
	}
}
.footer-bottom-content {
	flex-direction:row;
}

/* Service Cards Styles */
.landing-links {
    padding: 2rem 1rem;
    margin: 2rem auto;
    text-align: center;
}

.landing-links h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.landing-links h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2ecc71);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-content h3 {
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.card-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-image {
        height: 220px;
    }
}

@media (min-width: 1024px) {
    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .landing-links {
        padding: 3rem 2rem;
    }
    
    .card-image {
        height: 240px;
    }
    
    .card-content h3 {
        font-size: 1.35rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }
}

/* New styles for Sidebar Service Cards */
.sidebar-service-cards {
    margin-bottom: 20px; /* Add some space below the sidebar block */
    padding: 15px;
    background-color: var(--secondary-color); /* Assuming a light background */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sidebar-service-cards h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem; /* Adjust font size for sidebar */
}

.service-cards-randomized {
    display: flex;
    flex-direction: column; /* Stack cards vertically by default */
    gap: 15px; /* Space between cards */
}

/* Adjustments for service-card within sidebar */
.sidebar-service-cards .service-card {
    display: flex; /* Make card content align horizontally */
    text-align: right; /* Adjust text alignment for right-to-left */
    box-shadow: none; /* Remove individual card shadow if desired, or keep light */
    border: 1px solid #eee;
    background-color: #fff;
    padding: 10px;
}

.sidebar-service-cards .service-card .card-image {
    width: 80px; /* Smaller image for sidebar */
    height: 80px;
    flex-shrink: 0; /* Prevent image from shrinking */
    margin-left: 10px; /* Space between image and text */
    border-radius: 4px;
    object-fit: cover;
}

.sidebar-service-cards .service-card .card-content {
    padding: 0; /* Remove internal padding, controlled by parent now */
    flex-grow: 1;
}

.sidebar-service-cards .service-card h3 {
    font-size: 1rem; /* Smaller heading */
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 1.4;
}

.sidebar-service-cards .service-card p {
    font-size: 0.85rem; /* Smaller paragraph */
    line-height: 1.4;
    margin: 0;
    color: #666;
}

/* Responsive adjustments for the entire post layout */
.post-layout {
    display: flex;
    flex-direction: column; /* Stack main content and sidebar vertically by default (mobile first) */
    gap: 20px; /* Space between main content and sidebar */
    padding: 20px 0; /* Add some padding to the overall layout */
}

.post-main {
    width: 100%;
}

.post-sidebar {
    width: 100%;
}

@media (min-width: 768px) {
    .post-layout {
        flex-direction: row; /* Arrange main content and sidebar horizontally */
        align-items: flex-start; /* Align items to the top */
    }

    .post-main {
        flex: 3; /* Main content takes more space */
    }

    .post-sidebar {
        flex: 1; /* Sidebar takes less space */
        min-width: 280px; /* Minimum width for sidebar */
    }

    .sidebar-service-cards .service-cards-randomized {
        flex-direction: column; /* Stack cards vertically in sidebar on larger screens */
    }

    .sidebar-service-cards .service-card {
        width: auto; /* Revert to auto width */
    }
}

/* Contact Form Responsive Styles */
.contact-container {
  max-width: 650px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 2rem 1rem;
}
.contact-form {
  width: 100%;
}
.contact-form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact-form-group {
  flex: 1 1 200px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.contact-form-group label {
  font-weight: 500;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  color: #33385d;
}
.contact-form-group input,
.contact-form-group textarea {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  background: #f9f9fb;
  transition: border 0.2s;
  min-height: 44px;
  resize: none;
}
.contact-form-group textarea {
  min-height: 120px;
  max-width: 100%;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: #3498db;
  outline: none;
}
.full-width {
  flex: 1 1 100%;
}
.contact-form-checkboxes {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.checkbox-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #33385d;
  font-size: 1rem;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1.5rem;
  width: 100%;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.98rem;
  padding: 0.2rem 0;
  cursor: pointer;
  user-select: none;
}
.checkbox-item input[type="checkbox"] {
  accent-color: #3498db;
  width: 18px;
  height: 18px;
  margin-left: 0.5rem;
}
.error {
  color: #e74c3c;
  font-size: 0.92rem;
  margin-top: 0.2rem;
}
.submit-btn {
  width: 100%;
  max-width: 220px;
  background: linear-gradient(90deg, #3498db 0%, #1aeaeb 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.9rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin: 1.5rem auto auto auto;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(52,152,219,0.08);
}
.submit-btn:hover {
  background: linear-gradient(90deg, #1aeaeb 0%, #3498db 100%);
}
@media (min-width: 600px) {
  .contact-form-row {
    flex-wrap: nowrap;
    gap: 1.5rem;
  }
  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .contact-container {
    padding: 2.5rem 2.5rem;
  }
  .contact-form-row {
    gap: 2rem;
  }
  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }
}