/* BI CONNECT LIMITED - Main Stylesheet */

/* CSS Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #ffffff;
	overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: #1f2937;
}

h1 {
	font-size: 3rem;
	font-weight: 700;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1.1rem;
}

p {
	margin-bottom: 1rem;
	color: #4b5563;
	line-height: 1.7;
}

a {
	color: #2563eb;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #1d4ed8;
	text-decoration: underline;
}

ul,
ol {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

li {
	margin-bottom: 0.5rem;
	color: #4b5563;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	line-height: 1.5;
}

.btn-primary {
	background-color: #2563eb;
	color: white;
	border: 2px solid #2563eb;
}

.btn-primary:hover {
	background-color: #1d4ed8;
	border-color: #1d4ed8;
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
	background-color: #6b7280;
	color: white;
	border: 2px solid #6b7280;
}

.btn-secondary:hover {
	background-color: #4b5563;
	border-color: #4b5563;
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
}

.btn-outline {
	background-color: transparent;
	color: #2563eb;
	border: 2px solid #2563eb;
}

.btn-outline:hover {
	background-color: #2563eb;
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

/* Cookie Consent Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #1f2937;
	color: white;
	padding: 1rem;
	z-index: 1000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

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

.cookie-content p {
	color: #d1d5db;
	margin: 0;
	flex: 1;
	min-width: 300px;
}

.cookie-buttons {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	flex-wrap: wrap;
}

.cookie-link {
	color: #93c5fd;
	text-decoration: underline;
	margin-left: 1rem;
}

.cookie-link:hover {
	color: #dbeafe;
}

/* Header */
.header {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(248, 250, 252, 0.95) 100%
	);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(226, 232, 240, 0.3);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition: all 0.3s ease;
}

.header.scrolled {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.98) 0%,
		rgba(248, 250, 252, 0.98) 100%
	);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.navbar {
	padding: 1rem 0;
}

.navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: #1f2937;
	position: relative;
	transition: all 0.3s ease;
}

.nav-brand:hover {
	transform: scale(1.05);
}

.nav-brand::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #2563eb, #1d4ed8);
	transition: width 0.3s ease;
}

.nav-brand:hover::after {
	width: 100%;
}

.nav-brand .logo {
	width: 36px;
	height: 36px;
	filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
	transition: all 0.3s ease;
}

.nav-brand:hover .logo {
	filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
	transform: rotate(5deg);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

.nav-link {
	font-weight: 500;
	color: #4b5563;
	padding: 0.5rem 0;
	position: relative;
	transition: color 0.3s ease;
}

.nav-link {
	position: relative;
	transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: #2563eb;
	text-decoration: none;
	transform: translateY(-2px);
}

.nav-link:hover::before {
	content: '';
	position: absolute;
	top: -5px;
	left: -10px;
	right: -10px;
	bottom: -5px;
	background: rgba(37, 99, 235, 0.05);
	border-radius: 8px;
	z-index: -1;
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #2563eb;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background-color: #4b5563;
	transition: all 0.3s ease;
}

/* Page Header */
.page-header {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: white;
	padding: 8rem 0 4rem;
	text-align: center;
	margin-top: 70px;
}

.page-header h1 {
	color: white;
	margin-bottom: 1rem;
	font-size: 3rem;
}

.page-header p {
	color: #dbeafe;
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	color: white;
	overflow: hidden;
}

.modern-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #2563eb 100%);
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -2;
}

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

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: -1;
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 0.75rem 1.5rem;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
	font-size: 0.9rem;
	font-weight: 500;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.gradient-text {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.highlight-text {
	position: relative;
	display: inline-block;
}

.highlight-text::after {
	content: '';
	position: absolute;
	bottom: 0.1em;
	left: 0;
	right: 0;
	height: 0.3em;
	background: linear-gradient(
		90deg,
		rgba(251, 191, 36, 0.3),
		rgba(245, 158, 11, 0.3)
	);
	z-index: -1;
}

.hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	color: #e5e7eb;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	justify-content: center;
	margin: 2rem 0;
	flex-wrap: wrap;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #fbbf24;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin: 2rem 0;
}

.hero-buttons .btn i {
	margin-right: 0.5rem;
}

.hero-trust-badges {
	display: flex;
	gap: 2rem;
	justify-content: center;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 30px;
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(5px);
}

.trust-badge i {
	color: #10b981;
}

/* Hero Particles */
.hero-particles {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 1;
}

.particle {
	position: absolute;
	width: 6px;
	height: 6px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	animation: particleFloat 6s infinite ease-in-out;
}

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

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

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

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

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

@keyframes particleFloat {
	0% {
		transform: translateY(100vh) scale(0);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(-100px) scale(1);
		opacity: 0;
	}
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: bounce 2s infinite;
}

.scroll-arrow {
	width: 30px;
	height: 30px;
	border-right: 2px solid rgba(255, 255, 255, 0.8);
	border-bottom: 2px solid rgba(255, 255, 255, 0.8);
	transform: rotate(45deg);
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* Sections */
.section {
	padding: 5rem 0;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #1f2937;
}

/* Features Section */
.features {
	padding: 5rem 0;
	background-color: #f9fafb;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 25px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: white;
	font-size: 2rem;
}

.feature-card h3 {
	margin-bottom: 1rem;
	color: #1f2937;
}

.feature-card p {
	color: #6b7280;
}

/* Services Preview */
.services-preview {
	padding: 5rem 0;
}

.services-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.services-text h2 {
	margin-bottom: 1.5rem;
}

.services-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.services-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: #4b5563;
}

.services-list .fas {
	color: #10b981;
	width: 20px;
}

.services-image {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.services-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

/* Services Page */
.services-overview {
	padding: 3rem 0;
	background-color: #f9fafb;
}

.overview-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.main-services {
	padding: 5rem 0;
}

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

.service-card {
	background: white;
	padding: 2.5rem;
	border-radius: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #e5e7eb;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
	border-color: #2563eb;
}

.service-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: white;
	font-size: 1.75rem;
}

.service-card h3 {
	margin-bottom: 1rem;
	color: #1f2937;
}

.service-card p {
	margin-bottom: 1.5rem;
	color: #6b7280;
}

.service-features {
	list-style: none;
	padding: 0;
}

.service-features li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	color: #4b5563;
}

.service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #10b981;
	font-weight: bold;
}

/* Process Section */
.process {
	padding: 5rem 0;
	background-color: #f9fafb;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.process-step {
	text-align: center;
	position: relative;
}

.step-number {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 1rem;
}

.process-step h3 {
	margin-bottom: 1rem;
	color: #1f2937;
}

.process-step p {
	color: #6b7280;
}

/* Technology Section */
.technology {
	padding: 5rem 0;
}

.tech-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.tech-categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.tech-category {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	border: 1px solid #e5e7eb;
}

.tech-category h4 {
	color: #1f2937;
	margin-bottom: 1rem;
	text-align: center;
}

.tech-category ul {
	list-style: none;
	padding: 0;
	text-align: left;
}

.tech-category li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #f3f4f6;
	color: #4b5563;
}

.tech-category li:last-child {
	border-bottom: none;
}

/* About Page */
.about-content {
	padding: 5rem 0;
}

.about-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

.about-image {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.about-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

/* Values Section */
.values {
	padding: 5rem 0;
	background-color: #f9fafb;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.value-card {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

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

.value-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #10b981, #059669);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: white;
	font-size: 1.75rem;
}

/* Expertise Section */
.expertise {
	padding: 5rem 0;
}

.expertise-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.expertise-image {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.expertise-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.expertise-list {
	margin-top: 2rem;
}

.expertise-item {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: #f9fafb;
	border-radius: 0.5rem;
	border-left: 4px solid #2563eb;
}

.expertise-item h4 {
	color: #1f2937;
	margin-bottom: 0.5rem;
}

.expertise-item p {
	color: #6b7280;
	margin: 0;
}

/* Stats Section */
.stats {
	padding: 5rem 0;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: white;
}

.stats .section-title {
	color: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.stat-card {
	text-align: center;
	padding: 2rem;
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: white;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.1rem;
	color: #dbeafe;
}

/* Contact Section */
.contact-section {
	padding: 5rem 0;
}

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

.contact-form-container h2 {
	margin-bottom: 1rem;
}

.contact-form-container p {
	margin-bottom: 2rem;
	color: #6b7280;
}

/* Contact Form */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

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

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.75rem 1rem;
	border: 2px solid #d1d5db;
	border-radius: 0.5rem;
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.checkbox-group {
	flex-direction: row;
	align-items: flex-start;
	gap: 0.75rem;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
	transform: scale(1.2);
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid #d1d5db;
	border-radius: 4px;
	position: relative;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Form Messages */
.form-message {
	padding: 1.5rem;
	border-radius: 0.5rem;
	text-align: center;
	margin-top: 1rem;
}

.form-message.success {
	background-color: #d1fae5;
	border: 1px solid #10b981;
	color: #047857;
}

.form-message.error {
	background-color: #fee2e2;
	border: 1px solid #ef4444;
	color: #dc2626;
}

.form-message i {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	display: block;
}

.form-message h3 {
	margin-bottom: 0.5rem;
}

.form-message p {
	margin: 0;
}

/* Contact Info */
.contact-info-container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-card {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	border: 1px solid #e5e7eb;
}

.contact-card h3 {
	margin-bottom: 1rem;
	color: #1f2937;
}

.contact-card p {
	margin-bottom: 2rem;
	color: #6b7280;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contact-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.contact-text h4 {
	margin-bottom: 0.25rem;
	color: #1f2937;
	font-size: 1rem;
}

.contact-text p {
	margin: 0;
	color: #6b7280;
}

.contact-text a {
	color: #2563eb;
}

.contact-text a:hover {
	color: #1d4ed8;
}

.contact-image {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

/* FAQ Section */
.faq {
	padding: 5rem 0;
	background-color: #f9fafb;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.faq-item {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
	color: #1f2937;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.faq-item p {
	color: #6b7280;
	margin: 0;
}

/* CTA Section */
.cta {
	padding: 5rem 0;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: white;
	text-align: center;
}

.cta-content h2 {
	color: white;
	margin-bottom: 1rem;
}

.cta-content p {
	color: #dbeafe;
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Legal Content */
.legal-content {
	padding: 3rem 0 5rem;
}

.legal-document {
	max-width: 900px;
	margin: 0 auto;
	background: white;
	padding: 3rem;
	border-radius: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.legal-section {
	margin-bottom: 3rem;
}

.legal-section h2 {
	color: #1f2937;
	border-bottom: 2px solid #e5e7eb;
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}

.legal-section h3 {
	color: #374151;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.legal-section ul {
	margin-left: 1rem;
}

.legal-section li {
	margin-bottom: 0.5rem;
}

.contact-details {
	background: #f9fafb;
	padding: 1.5rem;
	border-radius: 0.5rem;
	border-left: 4px solid #2563eb;
}

.company-info-box {
	background: #eff6ff;
	padding: 1.5rem;
	border-radius: 0.5rem;
	border: 1px solid #bfdbfe;
	margin: 1.5rem 0;
}

.company-info-box h4 {
	color: #1e40af;
	margin-bottom: 1rem;
}

.company-info-box ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.company-info-box li {
	margin-bottom: 0.5rem;
	color: #1e40af;
}

/* Cookie Tables */
.cookie-table {
	margin: 1.5rem 0;
	overflow-x: auto;
}

.cookie-table table {
	width: 100%;
	border-collapse: collapse;
	background: white;
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
	background-color: #f9fafb;
	font-weight: 600;
	color: #374151;
}

.cookie-table td {
	color: #6b7280;
}

.cookie-table tr:last-child td {
	border-bottom: none;
}

/* Footer */
.footer {
	background-color: #1f2937;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	color: white;
	margin-bottom: 1rem;
}

.footer-section h4 {
	color: white;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.footer-section p {
	color: #d1d5db;
	line-height: 1.6;
}

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

.footer-section li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: #d1d5db;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: white;
	text-decoration: none;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #374151;
	border-radius: 50%;
	color: white;
	transition: background-color 0.3s ease;
}

.social-link:hover {
	background-color: #2563eb;
	text-decoration: none;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.contact-info p {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	color: #d1d5db;
}

.contact-info i {
	width: 20px;
	color: #2563eb;
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 1rem;
	text-align: center;
}

.footer-bottom p {
	color: #9ca3af;
	margin: 0;
}

/* Utilities */
.text-center {
	text-align: center;
}

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

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

.mb-0 {
	margin-bottom: 0;
}
.mb-1 {
	margin-bottom: 0.25rem;
}
.mb-2 {
	margin-bottom: 0.5rem;
}
.mb-3 {
	margin-bottom: 0.75rem;
}
.mb-4 {
	margin-bottom: 1rem;
}
.mb-5 {
	margin-bottom: 1.25rem;
}

.mt-0 {
	margin-top: 0;
}
.mt-1 {
	margin-top: 0.25rem;
}
.mt-2 {
	margin-top: 0.5rem;
}
.mt-3 {
	margin-top: 0.75rem;
}
.mt-4 {
	margin-top: 1rem;
}
.mt-5 {
	margin-top: 1.25rem;
}

.d-none {
	display: none;
}
.d-block {
	display: block;
}
.d-flex {
	display: flex;
}
.d-grid {
	display: grid;
}

/* Loading and Animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	animation: fadeIn 0.6s ease-out;
}

/* Print Styles */
@media print {
	.header,
	.footer,
	.cookie-banner,
	.btn,
	.social-links {
		display: none !important;
	}

	.hero {
		min-height: auto;
		padding: 2rem 0;
	}

	.page-header {
		margin-top: 0;
		padding: 2rem 0;
	}
}
