<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles and Variables */
:root {
  --primary-color: #0056b3;
  --secondary-color: #004085;
  --accent-color: #ffc107;
  --text-color: #333333;
  --text-light: #666666;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --error-color: #dc3545;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --border-radius: 4px;
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
  --footer-bg: #2c3e50;
}

/* Reset and Normalize */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

button, .btn {
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.section-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
}

.bg-light {
  background-color: var(--light-color);
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn-tertiary {
  background-color: transparent;
  color: var(--text-light);
  text-decoration: underline;
}

.btn-tertiary:hover {
  color: var(--primary-color);
}

.btn-contact {
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}

.btn-contact:hover {
  background-color: #e0a800;
  color: var(--dark-color);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: var(--box-shadow);
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--primary-color);
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav li {
  margin-left: 1.5rem;
}

.main-nav a {
  color: var(--dark-color);
  font-weight: 500;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 2px 0;
  transition: var(--transition);
}

/* Hero Banner */
.hero-banner {
  padding: 8rem 0 5rem;
  background-color: var(--light-color);
}

.hero-content {
  max-width: 600px;
}

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

.hero-banner h1 {
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
}

.hero-banner p {
  margin-bottom: 2rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.hero-image {
  flex: 0 0 45%;
}

/* About Section */
.about-content {
  display: flex;
  gap: 3rem;
}

.about-text {
  flex: 0 0 60%;
}

.about-values {
  flex: 0 0 35%;
}

.value-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.value-item h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

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

.service-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 1.5rem;
  width: 60px;
  height: 60px;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--light-color);
}

.testimonial-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  min-width: 300px;
  flex: 0 0 calc(33.333% - 2rem);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
}

.testimonial-author h4 {
  margin-bottom: 0.2rem;
}

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

/* Blog Section */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-color);
}

.blog-image img {
  max-height: 60%;
  width: auto;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
}

.blog-more {
  margin-top: 3rem;
  text-align: center;
}

/* Contact Section */
.contact-container {
  display: flex;
  gap: 3rem;
}

.contact-info {
  flex: 0 0 35%;
}

.contact-form {
  flex: 0 0 60%;
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 0.9rem;
}

.social-media {
  margin-top: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: #ffffff;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 0 0 100%;
  max-width: 250px;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-links {
  flex: 1 0 150px;
}

.footer-links h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links ul li a:hover {
  color: #ffffff;
}

.footer-contact {
  flex: 1 0 250px;
}

.footer-contact h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-social a:hover {
  color: #ffffff;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 1001;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.cookie-content h3 {
  margin-bottom: 0.5rem;
}

.cookie-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Cookie Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1002;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 90%;
  position: relative;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.cookie-options {
  margin: 1.5rem 0;
}

.cookie-option {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option label {
  font-weight: 500;
  margin-left: 0.5rem;
}

.cookie-option p {
  margin-top: 0.5rem;
  margin-left: 1.7rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Blog List Page */
.blog-header {
  background-color: var(--light-color);
  padding-top: 8rem;
}

.blog-header-content {
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.blog-post-card {
  background-color: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-post-image {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-color);
}

.blog-post-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-meta {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  gap: 1rem;
}

.blog-post-content h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-post-content .btn-secondary {
  align-self: flex-start;
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 0;
}

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

.newsletter-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.newsletter-form .form-group {
  margin-bottom: 0;
}

/* Blog Article Page */
.article-section {
  padding-top: 8rem;
}

.article-navigation {
  margin-bottom: 2rem;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
}

.back-to-blog:hover {
  color: var(--primary-color);
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.article-author {
  margin-top: 1rem;
  font-style: italic;
  color: var(--text-light);
}

.article-image {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-color);
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.article-content {
  margin-bottom: 3rem;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-tags {
  margin-bottom: 2rem;
}

.article-tags h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.article-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.article-tags li a {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: var(--light-color);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.article-tags li a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.article-share {
  margin-bottom: 3rem;
}

.article-share h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
}

.share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--text-light);
}

.share-buttons a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.related-articles {
  margin-top: 4rem;
}

.related-articles h2 {
  margin-bottom: 2rem;
  text-align: center;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.related-article {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.related-article h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-cta {
  margin-top: 4rem;
}

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

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

.cta-content p {
  margin-bottom: 2rem;
}

/* Legal Pages */
.legal-section {
  padding-top: 8rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.last-updated {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.legal-section h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
}

.legal-section h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.legal-section ul, .legal-section ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-section ul {
  list-style: disc;
}

.legal-section ol {
  list-style: decimal;
}

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

/* Thank You Page */
.thank-you-section {
  padding: 8rem 0 5rem;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-icon {
  color: var(--success-color);
  margin-bottom: 2rem;
}

.thank-you-icon svg {
  width: 80px;
  height: 80px;
}

.thank-you-content h1 {
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  margin-bottom: 2rem;
}
</pre></body></html>