/* Base Styles */
:root {
  --primary-color: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --secondary-color: #10b981;
  --secondary-light: #34d399;
  --secondary-dark: #059669;
  --accent-color: #8b5cf6;
  --text-color: #1e293b;
  --text-light: #64748b;
  --text-dark: #0f172a;
  --background-color: #f8fafc;
  --background-alt: #f1f5f9;
  --border-color: #e2e8f0;
  --error-color: #ef4444;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 0.375rem;
  --container-max-width: 1280px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
}

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

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 40px;
  width: auto;
}

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

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.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(--background-alt);
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

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

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background-color: var(--background-alt);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

.hero-image {
  width: 40%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Overview Section */
.overview {
  padding: 4rem 0;
  background-color: white;
}

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

.overview-list {
  list-style-type: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.overview-list li {
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: var(--background-alt);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

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

/* Report Example Section */
.report-example {
  padding: 5rem 0;
  background-color: white;
}

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

.report-preview {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.report-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.report-details {
  flex: 1;
}

.report-details h3 {
  margin-bottom: 1rem;
}

.report-details ul {
  margin-top: 1rem;
}

.report-details li {
  margin-bottom: 0.5rem;
}

/* For Whom Section */
.for-whom {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

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

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

.audience-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.card-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

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

.audience-card ul {
  margin-top: 1rem;
}

/* Timeline Section */
.timeline {
  padding: 5rem 0;
  background-color: white;
}

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

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-date {
  background-color: var(--primary-color);
  color: white;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.timeline-content {
  padding: 1.5rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

/* Blog Preview Section */
.blog-preview {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

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

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

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

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

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.blog-content h3 a {
  color: var(--text-dark);
}

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

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

.read-more:hover {
  text-decoration: underline;
}

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

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

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

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

.footer-logo p {
  color: var(--text-light);
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-links-column h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

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

.footer-links-column ul li a {
  color: var(--text-light);
}

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

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

.social-links a {
  color: white;
  transition: var(--transition);
}

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

address {
  font-style: normal;
}

address a {
  color: var(--text-light);
}

address a:hover {
  color: white;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--text-dark);
  color: white;
  padding: 1rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-content p {
  margin-bottom: 0;
}

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

.btn-accept {
  background-color: var(--success-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
}

.btn-settings {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
}

.btn-decline {
  background-color: transparent;
  color: var(--text-light);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
}

.cookie-content a {
  color: var(--secondary-light);
  text-decoration: underline;
}

/* Blog Hero */
.blog-hero {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

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

.blog-hero .lead {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

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

.post-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

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

.post-card .post-image {
  flex: 0 0 300px;
  height: auto;
}

.post-card .post-content {
  flex: 1;
  padding: 2rem;
}

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

/* Subscribe Section */
.subscribe {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
}

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

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

.subscribe-content p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.subscribe-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.subscribe-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  border: none;
  font-size: 1rem;
}

.privacy-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-note a {
  color: white;
  text-decoration: underline;
}

/* Contact Hero */
.contact-hero {
  padding: 5rem 0;
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
}

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

.contact-hero .lead {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

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

.contact-wrapper {
  display: flex;
  gap: 4rem;
}

.contact-info {
  flex: 1;
}

.info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-icon {
  color: var(--secondary-color);
  flex-shrink: 0;
}

.info-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

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

.contact-form-container {
  flex: 1;
}

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

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

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

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

.form-group textarea {
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-checkbox input {
  margin-top: 0.25rem;
}

/* Map Section */
.map-section {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

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

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

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

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

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

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--background-alt);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  transition: var(--transition);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 1000px;
}

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: var(--box-shadow);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

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

.modal-body svg {
  margin: 0 auto 1rem;
}

/* About Hero */
.about-hero {
  padding: 5rem 0;
  background-color: var(--accent-color);
  color: white;
  text-align: center;
}

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

.about-hero .lead {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Our Story Section */
.our-story {
  padding: 5rem 0;
  background-color: white;
}

.our-story .container {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.story-content {
  flex: 1;
}

.story-content h2 {
  margin-bottom: 2rem;
}

.story-content p {
  margin-bottom: 1.5rem;
}

.story-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Mission Section */
.mission {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

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

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

.mission-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.mission-card .card-icon {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

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

/* Team Section */
.team {
  padding: 5rem 0;
  background-color: white;
}

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

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

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

.team-member img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  box-shadow: var(--box-shadow);
}

.team-member h3 {
  margin-bottom: 0.25rem;
}

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

.team-member p:last-of-type {
  margin-bottom: 1rem;
}

.team-member .social-links {
  justify-content: center;
  gap: 1rem;
}

.team-member .social-links a {
  color: var(--text-light);
}

/* Values Section */
.values {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

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

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

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

.value-icon {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.value-item h3 {
  margin-bottom: 0.75rem;
}

/* Partners Section */
.partners {
  padding: 5rem 0;
  background-color: white;
}

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

.partners-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.partner-logo {
  max-width: 180px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Blog Post */
.blog-post {
  padding: 5rem 0;
}

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

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

.post-header .post-meta {
  margin-bottom: 2rem;
}

.post-header .post-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: auto;
}

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

.post-overview {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
}

.post-overview h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.post-overview ul {
  margin-bottom: 0;
}

.post-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.post-content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content img {
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.post-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--text-light);
  margin: 2rem 0;
}

.post-footer {
  max-width: 800px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.post-tags span {
  font-weight: 600;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--background-alt);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--text-color);
}

.tag:hover {
  background-color: var(--border-color);
  color: var(--text-dark);
}

.post-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.post-share span {
  font-weight: 600;
}

.post-share a {
  color: var(--text-light);
}

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

.post-navigation {
  max-width: 800px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.post-navigation-links {
  display: flex;
  justify-content: space-between;
}

.post-prev,
.post-next {
  max-width: 45%;
}

.post-prev span,
.post-next span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.post-prev h3,
.post-next h3 {
  font-size: 1.1rem;
  margin: 0;
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero .container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .report-preview {
    flex-direction: column;
    gap: 3rem;
  }
  
  .report-image,
  .report-details {
    flex: auto;
  }
  
  .our-story .container {
    flex-direction: column-reverse;
    gap: 3rem;
  }
  
  .contact-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  
  .timeline-container::before {
    left: 0;
  }
  
  .timeline-item {
    width: 100%;
    left: 0;
    padding-left: 2rem;
  }
  
  .timeline-content {
    margin-left: 1rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 1rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .post-card {
    flex-direction: column;
  }
  
  .post-card .post-image {
    flex: 0 0 auto;
    height: 200px;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  nav ul li {
    margin: 0.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .partners-logos {
    gap: 1.5rem;
  }
  
  .partner-logo {
    max-width: 120px;
  }
  
  .cookie-buttons {
    flex-wrap: wrap;
  }
  
  .post-navigation-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .post-prev,
  .post-next {
    max-width: 100%;
    text-align: left;
  }
}
