<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-gold: #c8965f;
	--dark-navy: #1e2a3a;
	--light-gray: #f8f9fa;
	--white: #ffffff;
	--text-dark: #2c3e50;
	--text-light: #6c757d;
}

body {
	font-family: "Arial", sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	overflow-x: hidden;
}

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

/* Header */
header {
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	height: 80px;
	width: auto;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	min-height: 80px;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-menu a:hover {
	color: var(--primary-gold);
}

.language-selector {
	background: var(--primary-gold);
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s ease;
}

.language-selector:hover {
	background: var(--dark-navy);
	transform: translateY(-2px);
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--text-dark);
}

/* Hero Section */
.hero {
	background: linear-gradient(rgba(30, 42, 58, 0.8), rgba(200, 150, 95, 0.8)),
		url("/assets/img/bcgd-gs.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: white;
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"&gt;&lt;circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/&gt;&lt;circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/&gt;&lt;circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23grain)"/&gt;&lt;/svg&gt;');
	opacity: 0.3;
}

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

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-button {
	background: var(--primary-gold);
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
	background: var(--white);
	color: var(--dark-navy);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section {
	padding: 80px 0;
}

.section:nth-child(even) {
	background: var(--light-gray);
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--dark-navy);
	position: relative;
}

.section-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: var(--primary-gold);
	margin: 1rem auto;
	border-radius: 2px;
}

/* About Section */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text {
	font-size: 1.1rem;
	line-height: 1.8;
}

.about-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.stat-item {
	text-align: center;
	padding: 2rem;
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-gold);
	display: block;
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.service-card {
	background: white;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: all 0.3s ease;
	border-top: 4px solid var(--primary-gold);
}

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

.service-icon {
	width: 80px;
	height: 80px;
	background: var(--primary-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: white;
}

.service-card h3 {
	color: var(--dark-navy);
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

/* Testimonials */
.testimonials-slider {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: white;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: var(--primary-gold);
	font-family: serif;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.testimonial-author {
	font-weight: 600;
	color: var(--dark-navy);
}

.testimonial-company {
	color: var(--text-light);
	font-size: 0.9rem;
}

/* Contact Section Background */
/* Contact Section Background */
.contact-section {
	background: linear-gradient(rgba(30, 42, 58, 0.8), rgba(200, 150, 95, 0.8)),
		url("/assets/img/contact.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	position: relative;
	min-height: 100vh;
	padding: 80px 0;
}

/* Alternative selector for extra specificity */
#contact {
	background: linear-gradient(rgba(30, 42, 58, 0.8), rgba(200, 150, 95, 0.8)),
		url("/assets/img/contact.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	position: relative;
	min-height: 100vh;
}

/* Fallback background if image doesn't load */
.contact-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #1e2a3a 0%, #c8965f 100%);
	z-index: -1;
}

/* Subtle overlay pattern */
.contact-section::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(
			circle at 25% 25%,
			rgba(255, 255, 255, 0.1) 1px,
			transparent 1px
		),
		radial-gradient(
			circle at 75% 75%,
			rgba(200, 150, 95, 0.2) 1px,
			transparent 1px
		);
	background-size: 50px 50px, 80px 80px;
	opacity: 0.4;
	pointer-events: none;
	z-index: 1;
}

/* Container positioning */
.contact-section .container {
	position: relative;
	z-index: 2;
}

/* Section title styling */
.contact-section .section-title {
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact Content Layout */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

/* Contact Info Styling */
.contact-info {
	color: white;
}

.contact-info h3 {
	color: white;
	margin-bottom: 2rem;
	font-size: 1.5rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	gap: 1rem;
	background: rgba(255, 255, 255, 0.1);
	padding: 1rem;
	border-radius: 10px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.contact-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.contact-icon {
	width: 45px;
	height: 45px;
	background: var(--primary-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(200, 150, 95, 0.3);
}

.contact-item strong {
	color: var(--primary-gold);
	font-weight: 600;
}

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

.contact-item a:hover {
	color: var(--primary-gold);
	text-decoration: underline;
}

/* Contact Form Styling */
.contact-form {
	background: rgba(255, 255, 255, 0.95);
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-title {
	color: var(--dark-navy);
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
	text-align: center;
	border-bottom: 2px solid var(--primary-gold);
	padding-bottom: 0.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--dark-navy);
	font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: inherit;
	background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-gold);
	background: white;
	box-shadow: 0 0 0 3px rgba(200, 150, 95, 0.1);
	transform: translateY(-1px);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #999;
	font-style: italic;
}

/* Checkbox Group */
.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 2rem;
	padding: 1rem;
	background: rgba(200, 150, 95, 0.1);
	border-radius: 8px;
	border: 1px solid rgba(200, 150, 95, 0.3);
}

.checkbox-group input[type="checkbox"] {
	width: auto;
	margin-top: 0.2rem;
	accent-color: var(--primary-gold);
}

.checkbox-group label {
	font-size: 0.9rem;
	line-height: 1.4;
	color: var(--dark-navy);
	margin-bottom: 0;
}

/* Submit Button */
.submit-btn {
	background: linear-gradient(135deg, var(--primary-gold) 0%, #b8865f 100%);
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	position: relative;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(200, 150, 95, 0.4);
}

.submit-btn:hover {
	background: linear-gradient(135deg, #b8865f 0%, var(--dark-navy) 100%);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(200, 150, 95, 0.6);
}

.submit-btn:active {
	transform: translateY(-1px);
}

.submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

/* Loading state */
.btn-loading {
	display: none;
}

.submit-btn.loading .btn-text {
	display: none;
}

.submit-btn.loading .btn-loading {
	display: inline;
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-section {
		background-attachment: scroll; /* Better performance on mobile */
		padding: 60px 0;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-form {
		padding: 1.5rem;
		border-radius: 15px;
	}

	.contact-item {
		padding: 0.8rem;
	}

	.contact-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.contact-section {
		padding: 40px 0;
		min-height: auto;
	}

	.contact-form {
		padding: 1rem;
	}

	.form-title {
		font-size: 1.2rem;
	}

	.submit-btn {
		padding: 12px 25px;
		font-size: 1rem;
	}
}

/* Footer */
footer {
	background: var(--dark-navy);
	color: white;
	padding: 2rem 0;
	text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: block;
	}

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 1rem;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.nav-menu.active {
		display: flex;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.about-content,
	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.cookie-buttons {
		flex-direction: column;
		width: 100%;
	}

	.cookie-btn {
		width: 100%;
	}
}

.hidden {
	display: none;
}

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

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--dark-navy);
	color: white;
	padding: 1.5rem;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(100%);
	transition: transform 0.3s ease;
	z-index: 10000;
}

.cookie-popup.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.cookie-text {
	flex: 1;
	font-size: 0.95rem;
	line-height: 1.5;
}

.cookie-text a {
	color: var(--primary-gold);
	text-decoration: underline;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.cookie-accept {
	background: var(--primary-gold);
	color: white;
}

.cookie-accept:hover {
	background: #b8865f;
	transform: translateY(-2px);
}

.cookie-decline {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.cookie-decline:hover {
	background: white;
	color: var(--dark-navy);
}

.cookie-settings {
	background: transparent;
	color: var(--primary-gold);
	border: 2px solid var(--primary-gold);
}

.cookie-settings:hover {
	background: var(--primary-gold);
	color: white;
}
</pre></body></html>