/*Basics*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}

html, html a {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004); }

html, body {
	min-height: 100%; 
}

body {
	font-size: 17px;
	color: #40341f;
	font-family: 'Oxygen', Helvetica, Arial, sans-serif;
	background: #f4f1ed; 
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Oxygen', sans-serif;
	font-weight: 700;
	color: #40341f;
	margin: 0;
	padding: 0; 
}

h2 { font-size: 60px;}
h3 { font-size: 41px;}
h4 { font-size: 32px;}
h5 { font-size: 21px;}
h6 { font-size: 18px;}

h3, h4 {
	position: relative;
	padding-bottom: 28px;
}

h3:after, h4:after{
    content: "";
    position: absolute;
    width: 80px;
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-bottom: 2px solid #968778;
}

p {
	line-height: 1.4;
	margin: 20px 0;
}

.subtitle, .category {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.1em;
	font-size: 14px;
	color: #968778;
	text-align: center;
}

img, embed, object, video {
	max-width: 100%; }


ul, li {
	list-style: none;
	margin: 0;
	padding: 0; 
}

	a {
	text-decoration: none; 
	color: #968778;
}

a:hover {
	text-decoration: none; 
	color: #7a6b5f;
}

::selection {
	background: #968778;
	color: #fff;
}

.clear {
	clear: both;
}
	
.wrapper {
	max-width: 1080px;
	margin: 0 auto;
	position: relative; 
}

input[type=text] {
	border: 2px solid #40341f;
	background: #f4f1ed;
	font-size: 17px;
	color: #40341f;
	padding: 16px;
	border-radius: 999px;
	width: 280px;
	font-family: 'Oxygen', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

.buttons {
	width: auto;
	margin: 0 auto;
	text-align: center;
}

a.button-1, a.button-2, button {
	color: #fff;
	background: #968778;
	border: 2px solid #968778;
	border-radius: 999px;
	margin-top: -2px;
	margin-left: 10px;
	font-family: 'Oxygen', sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.1em;
	display: inline-block;
	width: 280px;
	margin: 10px;
	text-align: center;
	padding: 18px 0;
}

a.button-1:hover {
	border-color: #7a6b5f;
	background: #7a6b5f;
}

a.button-2 {
	border-color: #40341f;
	background: #40341f;
	color: #fff;
}

a.button-2:hover {
	background: #2d2418;
	color: #fff;
}

@media only screen and (max-width: 640px) {
	a.button-1, a.button-2 {
		font-size: 16px;
		margin: 5px;
	}
}

/*Header*/

header#top {
	background: #f4f1ed;
	height: 80px;
	border-bottom: 5px solid #968778;
}

h1.logo a {
	display: flex;
	align-items: center;
	float: left;
	color: #40341f;
	line-height: 80px;
	margin: 0 0 0 40px;
	height: 80px;
}

h1.logo a img {
	height: 35px;
	width: auto;
	max-width: 300px;
	vertical-align: middle;
}

h1.logo a span {
	color: #968778;
}

header#top nav {
	display: inline-block;
	float: right;
	width: auto;
	margin-top: 20px;
	margin-right: 40px;
}

header#top nav ul li {
	display: inline-block;
	float: left;
}

header#top nav ul li a {
	display: inline-block;
	background: none;
	padding:  10px 15px;
	color: #40341f;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 0.1em;
	font-family: 'Inter', 'Oxygen', Helvetica, Arial, sans-serif;
}

header#top nav ul li a:hover {
	color: #968778;
}

header#top nav ul li a.nav-cta {
	color: #968778;
	border: 2px solid #968778;
	border-radius: 999px;
	margin-top: -2px;
	margin-left: 10px;
}


/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 1001;
	position: relative;
	width: 40px;
	height: 40px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
}

.mobile-menu-toggle:focus {
	outline: 2px solid #968778;
	outline-offset: 2px;
}

.hamburger-line {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #40341f;
	margin: 3px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
	opacity: 1;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
	opacity: 0;
	transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Navigation */
.main-nav {
	display: block;
}

/* Body scroll lock when menu is open */
body.menu-open {
	overflow: hidden;
}


@media only screen and (max-width: 1024px) {
	header#top {
		height: 80px;
		padding: 0;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	header#top nav {
		margin-right: 0;
		margin-top: 0;
		width: 232px;
	}
	
	header#top .wrapper {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 0 20px;
	}
	
	.mobile-menu-toggle {
		display: flex !important;
		position: relative;
		top: auto;
		right: auto;
		transform: none;
		order: 2;
	}
	
	.mobile-menu-toggle .hamburger-line {
		background-color: #40341f !important;
		opacity: 1 !important;
	}
	
	.main-nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		max-width: 400px;
		height: 100vh;
		background: rgba(244, 241, 237, 0.98);
		backdrop-filter: blur(10px);
		z-index: 1000;
		transition: left 0.3s ease;
		overflow-y: auto;
		display: block;
		box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
	}
	
	.main-nav.active {
		left: 0;
	}
	
	.main-nav ul {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		min-height: 100%;
		padding: 60px 0 40px 0;
		margin: 0;
		list-style: none;
		overflow-y: auto;
	}
	
	.main-nav ul li {
		margin: 20px 0;
		opacity: 0;
		transform: translateY(30px);
		animation: slideInFromTop 0.5s ease forwards;
	}
	
	.main-nav ul li:nth-child(1) { animation-delay: 0.1s; }
	.main-nav ul li:nth-child(2) { animation-delay: 0.2s; }
	.main-nav ul li:nth-child(3) { animation-delay: 0.3s; }
	.main-nav ul li:nth-child(4) { animation-delay: 0.4s; }
	
	@keyframes slideInFromTop {
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	.main-nav ul li a {
		font-size: 24px;
		font-weight: 600;
		color: #40341f;
		text-decoration: none;
		padding: 15px 30px;
		display: block;
		transition: all 0.3s ease;
		border-radius: 8px;
		text-align: center;
		min-width: 200px;
		font-family: 'Inter', 'Oxygen', Helvetica, Arial, sans-serif;
	}
	
	.main-nav ul li a:hover {
		background-color: #968778;
		color: #f4f1ed;
		transform: scale(1.05);
	}
	
	
	header#top h1.logo {
		order: 1;
		margin: 0;
		float: none;
	}
	
	header#top h1.logo a {
		display: flex;
		align-items: center;
		float: none;
		margin: 0;
		text-align: left;
		padding: 0;
		line-height: 80px;
		height: 80px;
	}
	
	header#top h1.logo a img {
		height: 35px;
		max-width: 180px;
	}
}

/*Banner*/

#banner {
	height: 800px;
	background: #222 url(../images/banner.jpeg) no-repeat center;
	background-size: cover;
	position: relative;
	padding: 1px 0 0 0;
	overflow: hidden;
	animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
	0%, 100% {
		background-position: center center;
		background-size: 100% 100%;
	}
	50% {
		background-position: center center;
		background-size: 110% 110%;
	}
}

/* Fallback background image when no video is present */
#banner.no-video {
	background: #222 url(../images/banner.jpeg) no-repeat center;
	background-size: cover;
}

.banner-animated-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: linear-gradient(45deg, 
		rgba(64, 52, 31, 0.8) 0%, 
		rgba(150, 135, 120, 0.6) 25%, 
		rgba(0, 0, 0, 0.7) 50%, 
		rgba(150, 135, 120, 0.6) 75%, 
		rgba(64, 52, 31, 0.8) 100%);
	background-size: 400% 400%;
	animation: gradientShift 8s ease-in-out infinite;
	display: none; /* Hidden by default, shown when video fails */
}

/* Show animated background when video fails */
#banner.no-video .banner-animated-bg {
	display: block;
}

@keyframes gradientShift {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.banner-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	transform: translateX(-50%) translateY(-50%);
	object-fit: cover;
	display: block;
	opacity: 1;
	filter: brightness(0.7) contrast(1.1);
	box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.6);
}

/* Video shadow overlay */
.banner-video::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.3) 0%,
		rgba(0, 0, 0, 0.1) 25%,
		rgba(0, 0, 0, 0.4) 50%,
		rgba(0, 0, 0, 0.2) 75%,
		rgba(0, 0, 0, 0.5) 100%
	);
	pointer-events: none;
	z-index: 1;
}


#banner .wrapper {
	text-align: center;
	margin-top: 230px;
}

#banner h2 {
	margin: 20px auto 20px auto;
	padding: 0 5%;
	opacity: 0.9;
	color: #fff;
	font-size: 60px;
	text-align: center;
	font-weight: 700;
}

#banner .subtitle {
	font-size: 18px;
	letter-spacing: 0.1emx;
	margin: 0;
	color: #e0dad4;
}

#banner p {
	font-family: 'Droid Serif', Times, Georgia, serif;
	font-style: italic;
	width: 70%;
	margin: 0 auto;
	color: #e0dad4;
	margin-bottom: 40px;
}

#banner .button-2 {
	color: #fff;
	background: #40341f;
}

/* Banner Animations */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 52, 31, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 3;
}

.banner-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 4;
	pointer-events: none;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(244, 241, 237, 0.6);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
	left: 10%;
	animation-delay: 0s;
	animation-duration: 8s;
}

.particle:nth-child(2) {
	left: 20%;
	animation-delay: 2s;
	animation-duration: 6s;
}

.particle:nth-child(3) {
	left: 30%;
	animation-delay: 4s;
	animation-duration: 7s;
}

.particle:nth-child(4) {
	left: 70%;
	animation-delay: 1s;
	animation-duration: 9s;
}

.particle:nth-child(5) {
	left: 80%;
	animation-delay: 3s;
	animation-duration: 5s;
}

.particle:nth-child(6) {
	left: 90%;
	animation-delay: 5s;
	animation-duration: 8s;
}

@keyframes float {
	0%, 100% {
		transform: translateY(100vh) rotate(0deg);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

/* Animation Classes */
.animate-fade-in-up {
	opacity: 0;
	transform: translateY(50px);
	animation: fadeInUp 1s ease-out forwards;
}

.animate-delay-1 {
	animation-delay: 0.3s;
}

.animate-delay-2 {
	animation-delay: 0.6s;
}

.animate-delay-3 {
	animation-delay: 0.9s;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.banner-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 80px;
}

.animate-button {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.animate-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.animate-button:hover::before {
	left: 100%;
}

.animate-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(150, 135, 120, 0.3);
}


/* Banner Content Enhancements */
#banner .banner-content {
	position: relative;
	z-index: 5;
}

#banner h2 {
	color: #f4f1ed;
	opacity: 1;
}

@keyframes gradientShift {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

#banner .subtitle {
	display: inline-block;
	position: relative;
	overflow: hidden;
}

#banner .subtitle::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(244, 241, 237, 0.3), transparent);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

@media only screen and (max-width: 1024px) {
	#banner h2 {
		font-size: 36px;
		margin-top: 20px;
		padding: 0;
		width: 100%;
	}
	#banner .subtitle {
		font-size: 14px;
	}
	#banner p {
		width: 90%;
		font-size: 15px;
	}
	#banner .wrapper { 
		margin: 50px auto;
	}
	#banner {
		height: auto;
		padding: 40px 0;
	}
	.banner-buttons {
		flex-direction: column;
		align-items: center;
	}
	.banner-buttons .button-1,
	.banner-buttons .button-2 {
		width: 280px;
		margin: 5px 0;
	}
	
	/* Mobile video optimizations */
	.banner-video {
		/* Ensure video covers the full banner on mobile */
		min-width: 100%;
		min-height: 100%;
		/* Optimize for mobile performance */
		will-change: transform;
	}
}

/* Additional mobile optimizations for smaller screens */
@media only screen and (max-width: 480px) {
	#banner h2 {
		font-size: 38px;
		margin-top: 15px;
	}
	#banner .subtitle {
		font-size: 12px;
	}
	#banner p {
		font-size: 14px;
		width: 95%;
	}
	#banner .wrapper { 
		margin: 30px auto;
	}
	
	/* Additional mobile optimizations for full-width section */
	.full-width-section h2 {
		font-size: 32px;
	}
	
	.text-content {
		padding: 0 15px;
	}
}

/*Featured Articles Section Section*/

.featured-articles-section {
	text-align: center;
	/*padding: 100px 0;*/
	background: #f4f1ed;
}

.cards-container {
	margin: 60px auto;
}

.article-card {
	background-color: #000;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	float: left;
	margin: 10px;
	border-radius: 10px;
}

.article-card.article-card-alt {
	background-color: #d8ccc2;
}

.article-card.article-card-alt h4 {
	color: #40341f;
}

.article-card.article-card-alt h4:after {
	border-color: #40341f;
	opacity: .6;
}

.article-card.article-card-alt .category, 
.article-card.article-card-alt p, 
.article-card.article-card-alt p a {
	color: #40341f;
}

.article-card-content {
	width: 90%;
	margin: 22% auto;
	position: relative;
	z-index: 2;
	font-weight: bold;
}

/* Special content styling for square cards with labels */
.article-card-content.card-label-content {
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}

.article-card .category {
	color: #e0dad4;
}

.article-card h4 {
	color: #fff;
}

.article-card p, .article-card p a {
	font-family: 'Droid Serif', Times, Georgia, serif;
	font-style: italic;
	font-size: 16px;
	color: #e0dad4;
	width: 90%;
	margin: 25px auto 0 auto;
}

.card-label {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(150, 135, 120, 0.9);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 12px 24px;
	border-radius: 25px;
	margin: 0;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	max-width: 80%;
	max-height: 60px;
}

.article-card.card-large p {
	width: 60%;
}


.article-card h4:after {
	border-color: rgba(255, 255, 255, .6);
}

.article-card.card-large {
	width: 790px;
	height: 520px;
}

.article-card.card-medium {
	width: 520px;
	height: 420px;
}

/* Individual card overlays */
.article-card.card-congress3 {
	position: relative;
}

.article-card.card-congress3::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	z-index: 1;
}

.article-card.card-congress2sq {
	position: relative;
}

.article-card.card-congress2sq::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	z-index: 1;
}

.article-card.card-congress4sq {
	position: relative;
}

.article-card.card-congress4sq::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	z-index: 1;
}

.article-card.card-congress12 {
	position: relative;
}

.article-card.card-congress12::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	border-radius: 10px;
	z-index: 1;
}

.article-card.card-bg5 {
	position: relative;
}

.article-card.card-bg5::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	z-index: 1;
}

.article-card.card-small {
	width: 250px;
	height: 250px;
}

.article-group {
	float: left;
}

.article-group .article-card {
	float: none;
}

@media only screen and (max-width: 1079px) {
	.cards-container {
		width: 800px;
	}
	.article-card.card-large {
		width: 510px;
	}
	.article-card.card-medium {
		width: 380px;
	}
	.article-card.card-large p {
		width: auto;
	}
}

@media only screen and (max-width: 799px) {
	.cards-container {
		width: 80%;
	}
	.article-card.card-large, .article-card.card-medium {
		width: 95%;
		margin: 2.5% 2.5%;
	}
	.article-card.card-small {
		width: 45%;
		margin: 1.25% 2.5%;
	}
}
	
@media only screen and (max-width: 480px) {
	.article-card.card-small {
		width: 95%;
		margin: 2.5% 2.5%;
	}
}


/*Full Width Section*/

.full-width-section {
	text-align: left;
	padding: 120px 0;
	background: #d8ccc2;
	max-height: 870px;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

.full-width-section .subtitle {
	color: #968778;
	font-size: 18px;
	margin-bottom: 40px;
}

.full-width-section h2 {
	margin-bottom: 40px;
}

.full-width-section p {
	font-family: 'Droid Serif', Times, Georgia, serif;
	font-style: italic;
	font-size: 18px;
	color: #40341f;
	margin-bottom: 50px;
	text-align: justify;
	line-height: 1.7;
}

.full-width-section .text.align-left {
	float: left;
	width: 60%;
	padding: 0 5% 0 40px;
}

.full-width-section .text.align-right{
	float: right;
	width: 60%;
	padding: 0 40px 0 10%;
}

.full-width-section .text.align-center {
	text-align: center;
	width: 80%;
	margin: 0 auto;
}

.full-width-section .text.align-center p.subtitle {
	text-align: center;
}

/* New grid layout for full-width section */
.content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.text-content {
	text-align: left;
}

.image-content {
	text-align: center;
}

.section-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.full-width-section .image.align-right {
	float: right;
	width: 35%;
	padding: 0 40px 0 5%;
	text-align: center;
}

.full-width-section .image.align-left {
	float: left;
	width: 35%;
	padding: 0 5% 0 40px;
	text-align: center;
}

.full-width-section .image.watermark {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 1;
	width: 40%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.full-width-section .image.watermark img {
	max-width: 100%;
	max-height: 80%;
	object-fit: contain;
}

.full-width-section ul.list-checkmarks {
	margin-top: 40px;
}

ul.list-checkmarks li {
	text-align: left;
	list-style-image: none;
	background: url(../images/checkmark.png) top left no-repeat;
	background-position: 0 2px;
	margin: 10px 0;
	padding: 0 10px 10px 40px;
}

@media only screen and (max-width: 1024px) {
	.full-width-section {
		padding: 120px 0;
	}
}

@media only screen and (max-width: 720px) {
	.full-width-section .text {
		float: none!important;
		text-align: center;
	}
	.full-width-section .text.align-right, 
	.full-width-section .text.align-left {
		width: 100%;
		padding: 0 20px;
	}
	.full-width-section .image.align-right,
	.full-width-section .image.align-left {
		width: 100%;
		padding: 0 20px;
	}
	.full-width-section .image {
		float: none!important;
		width: 80%!important;
		padding: 0 20px;
		margin: 0 auto 60px auto;
	}
	
	.full-width-section .image.watermark {
		position: static;
		transform: none;
		width: 100%;
		height: auto;
		margin: 40px auto;
	}
	.full-width-section .text p.subtitle {
		text-align: center;
	}
	.full-width-section h2 {
		font-size: 42px;
	}
	
	/* Responsive styles for new grid layout */
	.content-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.text-content {
		text-align: center;
		padding: 0 20px;
	}
	
	.section-image {
		height: 300px;
	}
}

/*Services Section*/

.services-section {
	text-align: center;
	padding: 100px 0;
	background: #f4f1ed;
}

.services-section .subtitle {
	color: #fff;
	color: rgba(255, 255, 255, .8);
	font-size: 12px;
}

.services-section p {
	color: #fff;
	color: rgba(255, 255, 255, .8);
	font-family: 'Droid Serif', Times, Georgia, serif;
	font-style: italic;
	font-size: 16px;
}

.services-section h4 {
	color: #fff;
}

.services-section h4:after {
	border-color: rgba(255, 255, 255, .8);
}

ul.services-list {
	width: 90%;
	margin: 100px auto 60px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	gap: 2%;
}

ul.services-list li:nth-child(1) {
	display: flex;
	flex: 1;
	background: #968778;
	padding: 80px 0;
	margin: 0;
	border-radius: 10px;
	height: 400px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

ul.services-list li:nth-child(2) {
	display: flex;
	flex: 1;
	background: #40341f;
	padding: 80px 0;
	margin: 0;
	border-radius: 10px;
	height: 400px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

ul.services-list li:nth-child(3) {
	display: flex;
	flex: 1;
	background: #0a1020;
	padding: 80px 0;
	margin: 0;
	border-radius: 10px;
	height: 400px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

ul.services-list li.emphasis {
	background: #0a1020;
}

ul.services-list li p {
	width: 80%;
	margin: 20px auto 40px auto;
}

ul.services-list li a {
	font-family: 'Oxygen', sans-serif;
	font-weight: 700;
	color: #968778;
}

ul.services-list li a:hover {
	color: #7a6b5f;
}

a.small-button {
	color: #fff!important;
	font-size: 14px;
	padding: 12px 40px;
	border: 2px solid #fff;
	border-radius: 999px;
	display: inline-block;
	font-weight: 600;
}

a.small-button:hover {
	opacity: 0.8;
}


@media only screen and (max-width: 960px) {
	ul.services-list {
		flex-direction: column;
		align-items: center;
	}
	
	ul.services-list li {
		display: flex !important;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		width: 100% !important;
		float: none !important;
		margin: 20px 0 !important;
		height: auto;
		min-height: 300px;
		padding: 40px 20px;
		clear: both;
	}
	
	ul.services-list li p {
		width: 90%;
		margin: 20px auto 30px auto;
	}
}

/* Additional mobile optimizations for smaller screens */
@media only screen and (max-width: 480px) {
	ul.services-list {
		margin: 60px auto 40px;
		padding: 0 10px;
	}
	
	ul.services-list li {
		min-height: 250px;
		padding: 30px 15px;
		margin: 15px 0 !important;
	}
	
	ul.services-list li h4 {
		font-size: 24px;
		margin-bottom: 15px;
	}
	
	ul.services-list li p {
		font-size: 14px;
		width: 95%;
		margin: 15px auto 25px auto;
	}
	
	a.small-button {
		font-size: 12px;
		padding: 10px 30px;
	}
}

/*Latest Articles / Masonry Section*/

.masonry-section {
	text-align: center;
	padding: 100px 0;
	background: #d8ccc2;
}

.masonry {
    margin: 60px auto;
    padding: 0;
    width: 95%;
    -moz-column-gap: 1.5em;
    -webkit-column-gap: 1.5em;
    column-gap: 1.5em;
    font-size: .85em;
}

.item {
    display: inline-block;
    background: #f4f1ed;
    margin: 0 0 1.5em;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-radius: 10px;
    text-align: left;
}

.item .summary {
	padding: 10px 30px 30px 30px;
}

.item h4 {
	font-family: 'Droid Serif', Times, Georgia, serif;
	font-size: 28px;
	margin: 12px 0;
	padding: 0;
}

.item .category {
	color: #968778;
	font-size: 12px;
}

.item h4:after {
	display: none;
}

.item img.article-image {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	width: 100%;
	height: 250px;
	object-fit: cover;
	object-position: center;
}

/* Taller items for asymmetric look */
.item.tall img.article-image {
	height: 400px;
}

.item.extra-tall img.article-image {
	height: 500px;
}

/* Wide items for horizontal layout */
.item.wide {
	column-span: 2;
}

.item.wide img.article-image {
	height: 425px;
}

/* Square items for symmetric look */
.item.square img.article-image {
	height: 300px;
	aspect-ratio: 1;
}

/* Rectangle items for asymmetric look */
.item.rectangle img.article-image {
	height: 200px;
	aspect-ratio: 1.5;
}

.item.rectangle-250 img.article-image {
	height: 250px;
	aspect-ratio: 1.3;
}

.item.rectangle-tall img.article-image {
	height: 350px;
	aspect-ratio: 0.8;
}

/* Mixed aspect ratios for more asymmetry */
.item.aspect-4-3 img.article-image {
	height: 280px;
	aspect-ratio: 4/3;
}

.item.aspect-3-4 img.article-image {
	height: 320px;
	aspect-ratio: 3/4;
}

.item.aspect-16-9 img.article-image {
	height: 250px;
	aspect-ratio: 16/9;
}

.advert-item {
	background: none;
}

.item img.advert {
	border-radius: 10px;
	width: 100%;
	height: 300px;
	object-fit: cover;
	object-position: center;
}

@media only screen and (min-width: 480px) {
    .masonry {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@media only screen and (min-width: 720px) {
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media only screen and (min-width: 1024px) {
    .masonry {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

/*Instagram Section*/

.instagram-section {
	text-align: center;
	padding: 100px 0;
	background: #f4f1ed;
}

.instagram-section p.subtitle {
	color: #968778;
	font-size: 17px;
}

ul.instagram-list {
	width: 90%;
	max-width: 1190px;
	margin: 80px auto 60px;
}

ul.instagram-list li {
	display: inline-block;
	float: left;
	width: 23%;
	background: #fff;
	padding: 0;
	margin: 1%;
}

ul.instagram-list li img {
	border-radius: 10px;
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
}

ul.instagram-list li a:hover {
	opacity: .5;
}
@media only screen and (max-width: 960px) {
	ul.instagram-list li {
		display: block;
		width: 47%;
		margin: 1.5%;
	}
}

@media only screen and (max-width: 720px) {
	ul.instagram-list li {
		display: block;
		width: 100%;
		margin: 3% 0;
	}
}

/*Footer*/

footer {
	background: #0a1020;
	margin-top: 0px;
	color: #f4f1ed;
	font-family: 'Oxygen', sans-serif;
	padding: 60px 0 20px 0;
	border-top: 5px solid #968778;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h4 {
	color: #968778;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-logo {
	display: flex;
	flex-direction: column;
}

.footer-logo-img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.footer-description {
	color: #968778;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.6;
}

.footer-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-section ul li {
	margin-bottom: 12px;
}

.footer-section ul li a {
	color: #d8ccc2;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #968778;
}

.footer-contact {
	text-align: center;
	padding: 20px;
}

.contact-info {
	text-align: center;
}

.contact-info p {
	color: #d8ccc2;
	font-size: 0.9rem;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.contact-info i {
	color: #968778;
	width: 16px;
	text-align: center;
}

.footer-bottom {
	border-top: 1px solid #2a2a2a;
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-left {
	float: left;
	text-align: left;
}

.footer-right {
	float: right;
	text-align: right;
}

.footer-bottom p {
	font-size: 14px;
	margin: 5px;
}

.footer-bottom p.copyright {
	font-family: 'Oxygen', sans-serif;
	font-weight: 500;
	color: #d8ccc2;
}

.footer-bottom .footer-links {
	color: #d8ccc2;
	text-transform: uppercase;
	font-size: 12px;
}

.footer-bottom .footer-links a {
	color: #d8ccc2;
	margin: 0 10px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
	color: #968778;
}

/* About Page Styles */
.about-content-section {
	padding: 60px 0;
	background: #fff;
}

.about-section h2 {
	font-size: 48px;
	margin-bottom: 30px;
	color: #40341f;
	text-align: center;
}

.about-section p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 20px;
	color: #666;
	text-align: justify;
}

.mission-detail-section, .vision-detail-section, .values-detail-section {
	padding: 120px 0;
	background: #f9f9f9;
}

.mission-detail-section:nth-child(even), .vision-detail-section:nth-child(even), .values-detail-section:nth-child(even) {
	background: #fff;
}

.mission-content, .vision-content, .values-content {
	max-width: 800px;
	margin: 0 auto;
}

.mission-content h3, .vision-content h3, .values-content h3 {
	font-size: 36px;
	margin-bottom: 30px;
	color: #40341f;
	text-align: center;
	position: relative;
}

.mission-content h3:after, .vision-content h3:after, .values-content h3:after {
	content: "";
	position: absolute;
	width: 80px;
	height: 2px;
	background: #968778;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.mission-content p, .vision-content p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 20px;
	color: #666;
	text-align: justify;
}

.values-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.value-item {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: all 0.6s ease-out;
	opacity: 0;
	transform: translateY(30px);
}

.value-item:hover {
	transform: translateY(-5px);
}

.value-item.animated,
.value-item.animate-in {
	opacity: 1;
	transform: translateY(0);
}

.value-item.centered-value {
	grid-column: 1 / -1;
	justify-self: center;
	max-width: 400px;
}

/* Animation Classes */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.animate-on-scroll.animated,
.animate-on-scroll.animate-in {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.8s ease-out;
}

.fade-in-left.animated,
.fade-in-left.animate-in {
	opacity: 1;
	transform: translateX(0);
}

.fade-in-right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.8s ease-out;
}

.fade-in-right.animated,
.fade-in-right.animate-in {
	opacity: 1;
	transform: translateX(0);
}

.fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.fade-in-up.animated,
.fade-in-up.animate-in {
	opacity: 1;
	transform: translateY(0);
}

/* Staggered animations for value items - consolidated above */

/* Slide-in animations for value items */
.slide-in-left {
	opacity: 0;
	transform: translateX(-100px);
	transition: all 0.8s ease-out;
}

.slide-in-left.animated,
.slide-in-left.animate-in {
	opacity: 1;
	transform: translateX(0);
}

.slide-in-right {
	opacity: 0;
	transform: translateX(100px);
	transition: all 0.8s ease-out;
}

.slide-in-right.animated,
.slide-in-right.animate-in {
	opacity: 1;
	transform: translateX(0);
}

/* Slow fade-in animation for watermark */
.fade-in-slow {
	opacity: 0;
	transition: opacity 2s ease-in-out;
}

.fade-in-slow.animated,
.fade-in-slow.animate-in {
	opacity: 1;
}

.value-item h4 {
	font-size: 20px;
	color: #40341f;
	margin-bottom: 15px;
	padding-bottom: 20px;
}

.value-item p {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

@media only screen and (max-width: 960px) {
	footer {
		padding: 40px 0 20px 0;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}
	
	.footer-logo {
		align-items: center;
	}
	
	.footer-logo-img {
		width: 150px;
	}
	
	.footer-contact {
		padding: 30px 20px;
	}
	
	.footer-bottom {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	
	.footer-left, .footer-right {
		float: none;
		text-align: center;
	}
	
	.about-section h2, .mission-content h3, .vision-content h3, .values-content h3 {
		font-size: 32px;
	}
	
	.about-section p, .mission-content p, .vision-content p {
		font-size: 16px;
	}
	
	.mission-detail-section, .vision-detail-section, .values-detail-section {
		padding: 80px 20px;
	}
	
	.mission-content, .vision-content, .values-content {
		padding: 0 20px;
	}
	
	.about-section {
		padding: 0 20px;
	}
}

@media only screen and (max-width: 768px) {
	.values-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.value-item.centered-value {
		grid-column: 1;
		max-width: none;
	}
	
	.footer-contact {
		padding: 25px 15px;
	}
	
	.contact-info p {
		font-size: 0.85rem;
		margin-bottom: 8px;
	}
	
	.mission-detail-section, .vision-detail-section, .values-detail-section {
		padding: 60px 15px;
	}
	
	.mission-content, .vision-content, .values-content {
		padding: 0 15px;
	}
	
	.about-section {
		padding: 0 15px;
	}
}

/* Additional styles for static HTML pages */

/* Hero Section for all pages */
.hero-section {
    background: linear-gradient(135deg, #0a1020 0%, #504d4b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Banner Overlay and Particles */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 52, 31, 0.1) 0%, rgb(0 0 0 / 70%) 100%);
    z-index: 1;
}

.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(244, 241, 237, 0.8);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    top: 100%;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 80%;
    animation-delay: 3s;
    animation-duration: 5s;
}

.particle:nth-child(6) {
    left: 90%;
    animation-delay: 5s;
    animation-duration: 8s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #40341f;
}

/* Main Services */
.main-services {
    padding: 80px 0;
    background: #f4f1ed;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #40341f, #968778);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #968778;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #40341f;
    margin-bottom: 20px;
}

.service-card p {
    color: #7a6b5f;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
}

/* Detailed Services */
.detailed-services {
    padding: 80px 0;
    background: white;
}

.detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.detailed-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.detailed-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #40341f;
    margin-bottom: 20px;
    text-align: center;
}

.card-content ul {
    list-style: none;
    padding: 0;
}

.card-content li {
    padding: 8px 0;
    color: #7a6b5f;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.card-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #968778;
    font-weight: bold;
}

/* Department Services */
.department-services {
    padding: 80px 0;
    background: #f4f1ed;
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.department-category {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.department-category:hover {
    transform: translateY(-5px);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.category-header img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

.category-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #40341f;
    margin: 0;
}

.services-list {
    display: grid;
    gap: 10px;
}

.service-item {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    color: #7a6b5f;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 4px solid #968778;
}

.service-item:hover {
    background: #968778;
    color: white;
    transform: translateX(5px);
}

/* References Image Section */
.references-image-section {
    padding: 60px 0;
    background: #f4f1ed;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.references-image-container {
    width: 100%;
    text-align: center;
    position: relative;
}

.references-image {
    max-width: 100%;
    height: auto;
}

/* Contact Info and Maps Section */
.contact-maps-section {
    padding: 80px 0;
    background: #f4f1ed;
}

.contact-maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

/* Contact Information Card */
.contact-info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-info-header {
    background: linear-gradient(135deg, #40341f, #968778);
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.contact-details {
    padding: 25px;
}

.contact-info-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-item h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #40341f;
    margin: 0 0 15px 0;
    text-align: center;
}

.contact-info-item h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #968778;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item p {
    color: #7a6b5f;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-item .company-name {
    font-size: 1rem;
    color: #40341f;
    text-align: center;
    line-height: 1.4;
}

.contact-info-item a {
    color: #968778;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #40341f;
    text-decoration: underline;
}

/* Maps Card */
.maps-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.maps-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.maps-header {
    background: linear-gradient(135deg, #40341f, #968778);
    color: white;
    padding: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.maps-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.maps-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.map-container {
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f4f1ed;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #40341f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #968778;
}

.submit-btn {
    background: linear-gradient(135deg, #40341f, #968778);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive Design for new pages */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .department-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-header img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-maps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .contact-details {
        padding: 20px;
    }
    
    .contact-info-item {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .references-image-section {
        padding: 40px 0;
        min-height: 60vh;
    }
    
    .references-image {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .references-image-section {
        padding: 20px 0;
        min-height: 50vh;
    }
}