:root {
  --primary-color: #3498db;
  --primary-dark: #2980b9;
  --secondary-color: #2ecc71;
  --secondary-dark: #27ae60;
  --tertiary-color: #e74c3c;
  --tertiary-dark: #c0392b;
  --text-color: #333;
  --text-light: #666;
  --bg-color: #fff;
  --bg-light: #f9f9f9;
  --bg-dark: #ecf0f1;
  --border-color: #ddd;
  --success: #2ecc71;
  --warning: #f1c40f;
  --danger: #e74c3c;
  --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  --border-radius: 5px;
  --font-main: 'Open Sans', Arial, sans-serif;
  --font-heading: 'Montserrat', 'Open Sans', Arial, sans-serif;
  --container-width: 1200px;
  --container-padding: 0 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-light);
  font-size: 16px;
}

body.font-size-increased {
  font-size: 18px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
}

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

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

li {
  margin-bottom: 0.5rem;
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Header */
header {
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  max-height: 50px;
  vertical-align: middle;
}

nav ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin: 0 0 0 1.5rem;
}

nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: var(--border-radius);
}

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

nav ul li a.active {
  border-bottom: 2px solid var(--primary-color);
}

.font-button {
  background: none;
  border: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: var(--border-radius);
  font-family: var(--font-main);
}

.font-button:hover {
  color: var(--primary-color);
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 0;
  margin-bottom: 3rem;
  text-align: center;
  background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

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

.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.about-hero,
.contact-hero {
  background-color: var(--secondary-color);
  background-image: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-align: center;
  border: none;
  box-shadow: var(--shadow);
  background-color: var(--bg-color);
  color: var(--text-color);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: white;
}

.btn-tertiary {
  background-color: var(--tertiary-color);
  color: white;
}

.btn-tertiary:hover {
  background-color: var(--tertiary-dark);
  color: white;
}

/* Blog Posts Section */
.blog-posts {
  padding: 3rem 0;
}

.blog-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.post-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.post-img {
  height: 200px;
  overflow: hidden;
}

.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-img img {
  transform: scale(1.05);
}

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.4;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.read-more::after {
  content: " →";
  transition: margin-left 0.3s ease;
}

.read-more:hover::after {
  margin-left: 5px;
}

/* Facts Section */
.facts {
  background-color: var(--bg-dark);
  padding: 3rem 0;
  margin-top: 3rem;
}

.facts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.fact-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.fact-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.fact-card h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* About Page */
.about-intro {
  padding: 3rem 0;
}

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

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.team {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

.team h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.team-member {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-member h3 {
  margin: 1rem 0 0.5rem;
  padding: 0 1rem;
}

.team-member p {
  padding: 0 1rem 1rem;
  margin-bottom: 0.5rem;
}

.values {
  padding: 3rem 0;
}

.values h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.value-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.value-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 1rem;
}

/* Contact Page */
.contact-info {
  padding: 3rem 0;
}

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

.contact-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.contact-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

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

.contact-form {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 3rem;
}

form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-check {
  display: flex;
  align-items: center;
}

.form-check input {
  width: auto;
  margin-right: 0.5rem;
}

.form-check label {
  margin-bottom: 0;
  font-weight: normal;
}

.map {
  padding: 3rem 0;
}

.map h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

/* Blog Post Content */
.post-content {
  padding: 3rem 0;
}

.post-header {
  margin-bottom: 2rem;
  text-align: center;
}

.post-header h1 {
  margin-bottom: 1rem;
}

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

.post-date,
.post-author {
  display: inline-block;
  margin: 0 0.5rem;
}

.post-featured-image {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.post-featured-image img {
  width: 100%;
  height: auto;
}

.post-body {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: #34495e;
  color: white;
  padding: 3rem 0 0;
}

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

.footer-about h3,
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-about h3::after,
.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  margin-top: 0.5rem;
}

.footer-links ul {
  list-style-type: none;
  padding: 0;
}

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

.footer-links ul li a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  margin-bottom: 0.75rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 1rem;
  display: none;
}

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

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.modal-content i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 1rem;
}

.modal-content h3 {
  margin-bottom: 1rem;
}

.modal-btn {
  margin-top: 1rem;
}

/* Responsiveness */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  nav {
    width: 100%;
    margin-top: 1rem;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 0.5rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .fact-card,
  .value-card,
  .contact-card {
    padding: 1.5rem;
  }
  
  .post-featured-image {
    margin: 0 -15px 2rem;
    border-radius: 0;
  }
  
  .social-icons {
    flex-wrap: wrap;
  }
}

/* Font Awesome Icons */
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.fa-bars:before { content: "\f0c9"; }
.fa-chart-line:before { content: "\f201"; }
.fa-money-bill-wave:before { content: "\f53a"; }
.fa-globe:before { content: "\f0ac"; }
.fa-map-marker-alt:before { content: "\f3c5"; }
.fa-phone:before { content: "\f095"; }
.fa-envelope:before { content: "\f0e0"; }
.fa-balance-scale:before { content: "\f24e"; }
.fa-lightbulb:before { content: "\f0eb"; }
.fa-shield-alt:before { content: "\f3ed"; }
.fa-users:before { content: "\f0c0"; }
.fa-chart-pie:before { content: "\f200"; }
.fa-globe-americas:before { content: "\f57d"; }
.fa-search-dollar:before { content: "\f688"; }
.fa-crown:before { content: "\f521"; }
.fa-hand-holding-usd:before { content: "\f4c0"; }
.fa-piggy-bank:before { content: "\f4d3"; }
.fa-chart-bar:before { content: "\f080"; }
.fa-clock:before { content: "\f017"; }
.fa-brain:before { content: "\f5dc"; }
.fa-puzzle-piece:before { content: "\f12e"; }
.fa-sync:before { content: "\f021"; }
.fa-headset:before { content: "\f590"; }
.fa-video:before { content: "\f03d"; }
.fa-book-open:before { content: "\f518"; }
.fa-comments:before { content: "\f086"; }
.fa-check-circle:before { content: "\f058"; }
