/* Base Styles */
:root {
  --primary-color: #0056b3;
  --primary-dark: #003d82;
  --primary-light: #4d8edb;
  --secondary-color: #ff9800;
  --secondary-dark: #e68a00;
  --secondary-light: #ffb74d;
  --accent-color: #2ecc71;
  --accent-dark: #27ae60;
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #888888;
  --bg-color: #ffffff;
  --bg-light: #f5f7fa;
  --bg-dark: #e9ecef;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: 'Montserrat', var(--font-family);
}

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

html {
  font-size: 62.5%; /* 10px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--gray-800);
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1.6rem;
}

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

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

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

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

button, .btn {
  cursor: pointer;
}

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

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-description {
  text-align: center;
  max-width: 70rem;
  margin: 0 auto 4rem;
  color: var(--gray-600);
}

/* Typography */
strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

small {
  font-size: 1.2rem;
}

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

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

.text-muted {
  color: var(--gray-600);
}

.lead {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.5;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 1rem 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn:hover, .btn:focus {
  text-decoration: none;
  outline: none;
}

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

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

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

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

.btn-outline {
  background-color: transparent;
  color: var(--gray-700);
  border-color: var(--gray-400);
}

.btn-outline:hover, .btn-outline:focus {
  background-color: var(--gray-100);
  color: var(--gray-800);
}

.btn-sm {
  padding: 0.7rem 1.5rem;
  font-size: 1.4rem;
}

.btn-lg {
  padding: 1.2rem 3rem;
  font-size: 1.8rem;
}

/* Header and Navigation */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 0;
}

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

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

.logo img {
  height: 5rem;
  width: auto;
}

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

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

.main-nav a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 1.6rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

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

/* Hero Section */
.hero {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 80rem;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4.2rem;
  margin-bottom: 2rem;
  color: white;
}

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

/* Features Section */
.features {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.feature-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.feature-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: white;
  margin-bottom: 2rem;
}

.feature-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.feature-card p {
  color: var(--text-light);
}

/* Latest Posts Section */
.latest-posts {
  padding: 8rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.view-all {
  font-weight: 500;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 3rem;
}

.post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.post-image {
  height: 24rem;
  overflow: hidden;
}

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

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

.post-content {
  padding: 2.5rem;
}

.post-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.post-content h3 a {
  color: var(--gray-800);
}

.post-content h3 a:hover {
  color: var(--primary-color);
}

.post-excerpt {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
}

.read-more:after {
  content: '→';
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover:after {
  margin-left: 1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.testimonial {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  max-width: 50rem;
  width: 100%;
  position: relative;
}

.testimonial:before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 8rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--primary-light);
  opacity: 0.2;
  z-index: 0;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
}

.testimonial-author h4 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.testimonial-author p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* CTA Section */
.cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 70rem;
  margin: 0 auto;
}

.cta h2 {
  color: white;
}

.cta p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: var(--gray-800);
  color: white;
  padding: 6rem 0 2rem;
}

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

.footer-logo img {
  height: 5rem;
  margin-bottom: 2rem;
}

.footer-logo p {
  color: var(--gray-400);
}

.footer-links h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

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

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

.footer-links a {
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-social h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-400);
  font-size: 1.4rem;
}

.company-info {
  margin-top: 1rem;
}

/* Blog Page Styles */
.blog-header, 
.about-header, 
.contact-header {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: white;
  text-align: center;
}

.blog-header h1, 
.about-header h1, 
.contact-header h1 {
  color: white;
  margin-bottom: 1rem;
}

.blog-header p, 
.about-header p, 
.contact-header p {
  font-size: 1.8rem;
  opacity: 0.9;
  max-width: 70rem;
  margin: 0 auto;
}

.blog-content {
  padding: 6rem 0;
}

.blog-filters {
  margin-bottom: 4rem;
}

.search-bar {
  display: flex;
  margin-bottom: 2rem;
}

.search-bar input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1.6rem;
}

.search-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.categories span {
  font-weight: 500;
  color: var(--gray-700);
}

.categories ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

.categories a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  background-color: var(--gray-100);
  color: var(--gray-700);
  font-size: 1.4rem;
}

.categories a.active,
.categories a:hover {
  background-color: var(--primary-color);
  color: white;
}

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

.blog-post {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gray-600);
  font-size: 1.4rem;
}

.category {
  background-color: var(--gray-200);
  color: var(--gray-700);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  font-size: 1.3rem;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.post-stats {
  display: flex;
  gap: 1.5rem;
  color: var(--gray-600);
  font-size: 1.4rem;
}

.post-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
  gap: 0.5rem;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: var(--border-radius);
  background-color: white;
  color: var(--gray-700);
  font-weight: 500;
  transition: var(--transition);
}

.pagination a.active,
.pagination a:hover {
  background-color: var(--primary-color);
  color: white;
}

.pagination a.next {
  width: auto;
  padding: 0 1.5rem;
  gap: 0.5rem;
}

/* Newsletter Section */
.newsletter {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

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

.newsletter-form {
  display: flex;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1.6rem;
}

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.newsletter .small {
  font-size: 1.4rem;
  color: var(--gray-600);
}

/* About Page Styles */
.about-story {
  padding: 8rem 0;
}

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

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

.about-text h2 {
  margin-bottom: 2.5rem;
}

.about-values {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

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

.value-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.value-icon {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.value-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
  padding: 8rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

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

.team-member img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  margin-bottom: 2rem;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.team-member h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1.8rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background-color: var(--gray-100);
  color: var(--gray-700);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Stats Section */
.stats-section {
  padding: 6rem 0;
  background-color: var(--primary-color);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-number {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 1.8rem;
  opacity: 0.9;
}

/* Contact Page Styles */
.contact-content {
  padding: 8rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 3rem;
}

.info-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.info-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.info-card a {
  color: var(--text-light);
}

.info-card a:hover {
  color: var(--primary-color);
}

.social-connect {
  grid-column: 1 / -1;
  margin-top: 2rem;
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  box-shadow: var(--box-shadow);
}

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

.contact-form-container > p {
  color: var(--text-light);
  margin-bottom: 3rem;
}

.contact-form .form-group {
  margin-bottom: 2rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.4rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 1.4rem;
  color: var(--text-light);
}

.map-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

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

.location-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-section {
  padding: 8rem 0;
}

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

.faq-item {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

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

.modal-content {
  background-color: white;
  border-radius: var(--border-radius-lg);
  max-width: 50rem;
  width: 90%;
  position: relative;
  box-shadow: var(--box-shadow-lg);
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.close-modal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  background: none;
  border: none;
  color: var(--gray-600);
  cursor: pointer;
}

.modal-body {
  padding: 4rem;
  text-align: center;
}

.success-icon {
  width: 8rem;
  height: 8rem;
  background-color: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem;
}

.modal-body h2 {
  margin-bottom: 1.5rem;
}

.close-btn {
  margin-top: 2.5rem;
}

/* Countdown Section */
.countdown-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
  text-align: center;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.countdown-item {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  min-width: 12rem;
  box-shadow: var(--box-shadow);
}

.countdown-item span:first-child {
  display: block;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.countdown-label {
  display: block;
  font-size: 1.4rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.countdown-info {
  max-width: 60rem;
  margin: 0 auto;
}

/* Blog Post Single Page */
.blog-post-single {
  padding: 6rem 0;
}

.post-header {
  margin-bottom: 4rem;
}

.post-header h1 {
  font-size: 3.6rem;
  margin: 1.5rem 0 3rem;
}

.post-featured-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 4rem;
}

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

.post-intro {
  font-size: 1.8rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 3rem;
  padding-left: 2rem;
  border-left: 4px solid var(--primary-color);
}

.post-content h2 {
  font-size: 2.8rem;
  margin: 4rem 0 2rem;
}

.post-content h3 {
  font-size: 2.2rem;
  margin: 3rem 0 1.5rem;
}

.post-content h4 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1.5rem;
}

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

.post-content ul,
.post-content ol {
  margin-bottom: 2.5rem;
}

.post-content li {
  margin-bottom: 1rem;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin: 3rem 0;
  align-items: center;
}

.content-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

blockquote {
  padding: 3rem;
  margin: 3rem 0;
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--border-radius);
}

blockquote p {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 1rem;
}

blockquote cite {
  font-style: normal;
  font-weight: 500;
  color: var(--gray-700);
}

.post-tags {
  margin: 4rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.post-tags span {
  font-weight: 500;
  color: var(--gray-700);
}

.post-tags a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  background-color: var(--gray-100);
  color: var(--gray-700);
  font-size: 1.4rem;
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.post-share span {
  font-weight: 500;
  color: var(--gray-700);
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--gray-100);
  color: var(--gray-700);
  transition: var(--transition);
}

.post-share a:hover {
  background-color: var(--primary-color);
  color: white;
}

.author-bio {
  display: flex;
  gap: 3rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  margin-bottom: 4rem;
}

.author-image {
  flex-shrink: 0;
}

.author-image img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  font-size: 1.6rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.author-info h4 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

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

.related-posts {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.related-post {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.related-post-image {
  height: 20rem;
  overflow: hidden;
}

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

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

.related-post h3 {
  font-size: 1.8rem;
  margin: 0;
  padding: 2rem 2rem 1rem;
}

.related-post p {
  padding: 0 2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.related-post .read-more {
  display: block;
  padding: 0 2rem 2rem;
}

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

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  flex: 1;
  margin-bottom: 0;
  min-width: 30rem;
}

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

.cookie-content a {
  margin-left: 1rem;
  font-size: 1.4rem;
}

/* Complaint Form */
.complaint-form {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
}

.complaint-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 1rem 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.complaint-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.complaint-container {
  position: absolute;
  bottom: 6rem;
  right: 0;
  width: 40rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
  padding: 2.5rem;
  display: none;
}

.complaint-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.complaint-header h3 {
  margin-bottom: 0;
  font-size: 2rem;
}

.close-button {
  background: none;
  border: none;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 58%;
  }
  
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .content-with-image {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 56%;
  }
  
  .main-nav {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .main-nav li {
    margin: 0 1.5rem;
  }
  
  header .container {
    flex-direction: column;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 3.2rem;
  }
  
  .hero p {
    font-size: 1.8rem;
  }
  
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: var(--border-radius);
  }
  
  .countdown {
    flex-wrap: wrap;
  }
  
  .countdown-item {
    min-width: 10rem;
  }
  
  .author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .author-social {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .complaint-container {
    width: 32rem;
    right: -1rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 54%;
  }
  
  .section-header {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .feature-cards,
  .posts-grid,
  .blog-grid,
  .values-grid,
  .team-grid,
  .stats-grid,
  .contact-info,
  .faq-grid,
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .categories ul {
    margin-top: 1rem;
  }
  
  .complaint-container {
    width: 28rem;
  }
}
