/* 
  Archivo CSS principal para Naturaleza Salvaje Argentina
  Tema: Wildlife and Nature of Argentina - Exploring Native Species
*/

/* Variables */
:root {
  --primary-color: #2e7d32;
  --primary-light: #60ad5e;
  --primary-dark: #005005;
  --secondary-color: #e65100;
  --secondary-light: #ff833a;
  --secondary-dark: #ac1900;
  --text-color: #333333;
  --light-text: #f5f5f5;
  --dark-text: #212121;
  --background-light: #f9f9f9;
  --background-dark: #263238;
  --gray-light: #eeeeee;
  --gray-medium: #9e9e9e;
  --gray-dark: #616161;
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ff9800;
  --border-radius: 4px;
  --card-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
}

/* Reset y Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-light);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
  margin: 1rem 0;
}

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

button, .btn {
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  background-color: var(--primary-color);
  color: var(--light-text);
}

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

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

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 0.5rem;
}

h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

section {
  padding: 4rem 0;
}

/* Header y Navegación */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

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

.nav-links a.active:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin-bottom: 5px;
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  padding: 0 2rem;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-height: 70vh;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
}

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

.post-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

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

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.2rem;
}

.post-card p {
  padding: 0 1rem;
  color: var(--gray-dark);
  font-size: 0.95rem;
}

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

.read-more:hover {
  color: var(--primary-dark);
}

.see-all {
  text-align: center;
  margin-top: 2rem;
}

.see-all a {
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 3px;
}

.see-all a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

.see-all a:hover:after {
  background-color: var(--primary-dark);
}

/* Featured Posts Section */
.featured-posts {
  background-color: var(--background-light);
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.featured-posts h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Wildlife Stats Section */
.wildlife-stats {
  background-color: var(--primary-dark);
  color: var(--light-text);
}

.wildlife-stats h2 {
  color: var(--light-text);
  text-align: center;
  margin-bottom: 3rem;
}

.wildlife-stats h2:after {
  background-color: var(--light-text);
  left: 50%;
  transform: translateX(-50%);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  width: calc(25% - 2rem);
  min-width: 200px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary-light);
}

.stat-text {
  font-size: 1.1rem;
}

/* Poll Section */
.poll-section {
  background-color: #fff;
}

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

.poll-section h2:after {
  left: 50%;
  transform: translateX(-50%);
}

#wildlife-poll {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--gray-light);
  padding: 2rem;
  border-radius: 8px;
}

#wildlife-poll p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.poll-options {
  margin-bottom: 1.5rem;
}

.poll-option {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.poll-option input[type="radio"] {
  margin-right: 0.5rem;
}

.poll-option label {
  font-size: 1.1rem;
}

.poll-results {
  max-width: 700px;
  margin: 2rem auto 0;
  padding: 2rem;
  background-color: var(--gray-light);
  border-radius: 8px;
}

.poll-results h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.result-bar {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.result-label {
  width: 150px;
}

.progress {
  flex-grow: 1;
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 1rem;
}

.progress-bar {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 10px;
}

.result-percentage {
  width: 50px;
  text-align: right;
  font-weight: 600;
}

.hidden {
  display: none;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--primary-light);
  color: var(--light-text);
  text-align: center;
}

.newsletter h2 {
  color: var(--light-text);
}

.newsletter h2:after {
  background-color: var(--light-text);
  left: 50%;
  transform: translateX(-50%);
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 2rem auto 0;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  outline: none;
}

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

.newsletter-form button:hover {
  background-color: var(--secondary-dark);
}

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

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

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

.footer-links h3 {
  color: var(--light-text);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

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

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

.footer-links ul li a {
  color: var(--gray-medium);
  transition: var(--transition);
}

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

.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-social h3 {
  color: var(--light-text);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

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

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

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

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-medium);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-dark);
  color: var(--light-text);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

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

.cookie-more-info {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

.cookie-more-info a {
  color: var(--primary-light);
}

.cookie-more-info a:hover {
  color: var(--light-text);
}

/* Page Banner */
.page-banner {
  background-color: var(--primary-color);
  color: var(--light-text);
  text-align: center;
  padding: 5rem 0;
}

.page-banner h1 {
  color: var(--light-text);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-banner p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Content */
.blog-content {
  padding: 4rem 0;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-card {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

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

.blog-img {
  flex: 1;
  min-width: 300px;
}

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

.blog-info {
  flex: 2;
  padding: 2rem;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.blog-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.blog-info p {
  margin-bottom: 1.5rem;
}

.blog-info .btn {
  margin-top: 0.5rem;
}

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

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

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gray-dark);
}

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

.post-excerpt {
  font-size: 1.2rem;
  color: var(--gray-dark);
  font-style: italic;
  max-width: 800px;
}

.post-featured-image {
  margin-bottom: 2.5rem;
}

.post-featured-image img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.image-caption {
  color: var(--gray-dark);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 2rem;
}

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

.post-content h2 {
  margin-top: 2.5rem;
}

.post-content h3 {
  margin-top: 2rem;
  color: var(--primary-color);
}

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

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

.post-inline-image {
  margin: 2rem 0;
}

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

.tags-title {
  font-weight: 600;
  color: var(--gray-dark);
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: var(--gray-light);
  color: var(--gray-dark);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.tag:hover {
  background-color: var(--primary-light);
  color: var(--light-text);
}

.post-author-bio {
  display: flex;
  gap: 2rem;
  background-color: var(--gray-light);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.post-author-bio img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.author-info {
  flex: 1;
}

.author-info h3 {
  margin-bottom: 0.3rem;
}

.author-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.author-social a {
  color: var(--gray-dark);
}

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

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

.nav-box {
  width: 48%;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.nav-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-box.disabled {
  opacity: 0.5;
  cursor: default;
}

.nav-box span {
  display: block;
  color: var(--gray-dark);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.nav-box h4 {
  font-size: 1.1rem;
  margin: 0;
}

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

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

.related-posts {
  margin-bottom: 3rem;
}

.related-posts h3 {
  margin-bottom: 1.5rem;
}

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

.related-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

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

.related-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-card h4 {
  padding: 1rem;
  font-size: 1rem;
  margin: 0;
}

/* Contact Page */
.contact-section {
  padding: 4rem 0;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

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

.info-item {
  display: flex;
  margin-bottom: 2rem;
}

.info-icon {
  margin-right: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
}

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

.info-content p {
  color: var(--gray-dark);
}

.social-contact {
  margin-top: 3rem;
}

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

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.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: span 2;
}

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

.form-group input, .form-group textarea {
  padding: 0.8rem;
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary-color);
}

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

.checkbox-group input {
  margin-top: 5px;
}

.btn-submit {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}

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

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

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

.map-section h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
}

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

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

.faq-section h2:after {
  left: 50%;
  transform: translateX(-50%);
}

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

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

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

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

.faq-toggle {
  transition: var(--transition);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

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

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

/* Thank You Popup */
.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.thank-you-popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: #fff;
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-dark);
}

.popup-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.popup-icon svg {
  width: 60px;
  height: 60px;
  color: var(--success-color);
}

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

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

/* About Page */
.about-mission {
  padding: 4rem 0;
}

.mission-content {
  flex: 1;
  min-width: 300px;
}

.mission-image {
  flex: 1;
  min-width: 300px;
}

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

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

.about-values h2:after {
  left: 50%;
  transform: translateX(-50%);
}

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

.value-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

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

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

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

.team-section {
  padding: 4rem 0;
}

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

.team-section h2:after {
  left: 50%;
  transform: translateX(-50%);
}

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

.team-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.team-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.team-card h3 {
  margin: 1.5rem 0 0.5rem;
}

.team-card p {
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}

.team-card p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.achievements {
  background-color: var(--gray-light);
  padding: 4rem 0;
}

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

.achievements h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.achievement-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.achievement-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  background-color: var(--primary-color);
}

.achievement-item {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.achievement-year {
  min-width: 80px;
  margin-right: 2rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-dark);
  position: relative;
}

.achievement-year:before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.achievement-content {
  flex: 1;
}

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

.partners {
  padding: 4rem 0;
}

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

.partners h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 3rem;
  align-items: center;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  transition: var(--transition);
}

.partner-logo:hover {
  box-shadow: var(--card-shadow);
}

.partner-logo img {
  max-width: 150px;
  max-height: 80px;
  filter: grayscale(100%);
  transition: var(--transition);
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-content, .hero-image {
    padding: 1rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    margin: 0 auto 2rem;
  }

  .contact-container {
    flex-direction: column;
  }

  .mission-content {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .blog-card {
    flex-direction: column;
  }

  .blog-img {
    min-width: 100%;
    max-height: 250px;
  }

  .page-banner {
    padding: 3rem 0;
  }

  .page-banner h1 {
    font-size: 2.5rem;
  }

  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .post-navigation {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-box {
    width: 100%;
  }

  .post-author-bio {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .author-social {
    justify-content: center;
  }

  .achievement-item {
    flex-direction: column;
  }

  .achievement-year {
    margin-bottom: 1rem;
    padding-left: 2rem;
  }
}

@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input, .newsletter-form button {
    width: 100%;
    border-radius: var(--border-radius);
  }

  .newsletter-form button {
    margin-top: 1rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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