:root {
  --primary-color: #007c91; /* Teal-blue */
  --secondary-color: #e07c31; /* Terracotta orange */
  --tertiary-color: #4a6b8a; /* Slate blue */
  --accent-color: #ffa800; /* Golden yellow */
  --dark-color: #2c3e50; /* Dark slate */
  --light-color: #f8f9fa; /* Off-white */
  --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;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --font-sans: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', Times, serif;
  --border-radius: 0.5rem;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--light-color);
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

ul {
  list-style: none;
}

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

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 1rem;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

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

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

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

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.logo-container h1 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0;
}

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

.navbar li {
  margin-left: 1.5rem;
}

.navbar a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0.5rem 0;
  position: relative;
}

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

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

.font-size-btn {
  display: flex;
  align-items: center;
  background-color: var(--gray-200);
  color: var(--gray-700);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.font-size-btn svg {
  margin-right: 0.5rem;
}

.font-size-btn:hover {
  background-color: var(--gray-300);
}

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

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

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

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

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

.btn-primary:hover {
  background-color: #c66c2b;
  color: white;
}

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

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

.btn-tertiary {
  background-color: transparent;
  color: var(--gray-600);
  border: 1px solid var(--gray-400);
}

.btn-tertiary:hover {
  background-color: var(--gray-200);
  color: var(--gray-700);
}

.btn-full {
  width: 100%;
  padding: 1rem;
}

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

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

.feature-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

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

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

.feature-card p {
  color: var(--gray-600);
}

/* Recent Posts Section */
.recent-posts {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

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

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

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

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

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  color: var(--dark-color);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.post-content p {
  color: var(--gray-600);
  margin-bottom: 1.2rem;
}

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

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

.center {
  text-align: center;
  margin-top: 2.5rem;
}

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

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

.testimonial-card {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quote {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
  color: var(--dark-color);
  margin: 0;
}

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

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

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

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

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

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

.footer-column h3,
.footer-column h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-column p {
  color: var(--gray-400);
  margin-bottom: 0.8rem;
}

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

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

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

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

.footer-bottom p {
  color: var(--gray-500);
}

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

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

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

address {
  font-style: normal;
}

address p {
  display: flex;
  align-items: center;
}

address svg {
  margin-right: 0.5rem;
}

/* Page Banner */
.page-banner {
  background-color: var(--primary-color);
  background-image: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.page-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

/* Blog Page Specific */
.blog-content {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.blog-search {
  display: flex;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

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

.search-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 1.2rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

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

.post-meta {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.post-date {
  display: flex;
  align-items: center;
}

.post-category {
  background-color: var(--gray-200);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
}

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

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

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

.newsletter {
  background-color: var(--tertiary-color);
  color: white;
  padding: 4rem 0;
}

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

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

.newsletter p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

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

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Consultas Gratuitas Page Specific */
.consultation-info {
  padding: 4rem 0;
  background-color: white;
}

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

.topic-list {
  list-style: none;
}

.topic-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.topic-list svg {
  color: var(--success-color);
  margin-right: 0.8rem;
  flex-shrink: 0;
}

.consultation-form {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

.consultation-form h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.consultation-form > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--gray-600);
}

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

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 124, 145, 0.2);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-label input {
  margin-right: 0.5rem;
  width: auto;
}

.checkbox-consent {
  margin-top: 0.5rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  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);
  box-shadow: var(--box-shadow);
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gray-600);
  line-height: 1;
}

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

.modal-body svg {
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.modal-body h3 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.modal-body p {
  margin-bottom: 1.5rem;
  color: var(--gray-600);
}

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

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

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

.mission-img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.about-history > .container > p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  color: var(--gray-700);
}

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

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 2px;
  background-color: var(--gray-300);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2.5rem;
}

.timeline-date {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1;
}

.timeline-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.timeline-content p {
  color: var(--gray-600);
}

.about-team {
  padding: 4rem 0;
  background-color: white;
}

.about-team h3,
.about-team > p {
  text-align: center;
}

.about-team > p {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--gray-600);
}

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

.team-card {
  text-align: center;
  background-color: var(--gray-100);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

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

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--gray-200);
  border-radius: 50%;
  color: var(--dark-color);
  transition: var(--transition);
}

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

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

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

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

.value-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

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

.value-card h4 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.value-card p {
  color: var(--gray-600);
}

/* Contact Page Specific */
.contact-content {
  padding: 4rem 0;
  background-color: white;
}

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

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  margin-bottom: 2rem;
  color: var(--gray-600);
}

.contact-method {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  margin-right: 1rem;
  color: var(--primary-color);
}

.contact-details h4 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.contact-hours {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 0.3rem;
}

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

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

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

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

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

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

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

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

.faq-item {
  background-color: var(--gray-100);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.faq-item p {
  color: var(--gray-600);
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1999;
  padding: 1rem 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-content > p {
  margin-bottom: 1rem;
  color: var(--gray-700);
  max-width: 800px;
}

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

.cookie-link {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.cookie-link a {
  text-decoration: underline;
}

/* Post Pages Specific */
.post-header {
  text-align: center;
  margin-bottom: 3rem;
}

.post-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.post-meta-full {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  color: var(--gray-600);
}

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

.post-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.8rem;
}

.post-content-full {
  max-width: 800px;
  margin: 0 auto;
  color: var(--gray-700);
}

.post-content-full p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.post-content-full h2,
.post-content-full h3,
.post-content-full h4 {
  color: var(--dark-color);
  margin: 2.5rem 0 1.5rem;
}

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

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

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

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

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 3rem 0;
}

.tag {
  background-color: var(--gray-200);
  color: var(--gray-700);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.share-post {
  margin: 3rem 0;
  text-align: center;
}

.share-post h3 {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

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

.share-button {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-radius: var(--border-radius);
  color: white;
  transition: var(--transition);
}

.share-button svg {
  margin-right: 0.8rem;
}

.share-button.facebook {
  background-color: #3b5998;
}

.share-button.twitter {
  background-color: #1da1f2;
}

.share-button.linkedin {
  background-color: #0077b5;
}

.share-button.whatsapp {
  background-color: #25d366;
}

.share-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: white;
}

.related-posts {
  background-color: var(--gray-100);
  padding: 4rem 0;
}

/* Media Queries */
@media (max-width: 992px) {
  header .container {
    flex-direction: column;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .logo-container {
    margin-bottom: 1rem;
  }
  
  .navbar {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .navbar li {
    margin: 0.5rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .cta h2 {
    font-size: 1.8rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .contact-grid,
  .about-columns {
    grid-template-columns: 1fr;
  }
  
  .consultation-form {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .post-meta-full {
    flex-direction: column;
    gap: 1rem;
  }
  
  .share-buttons {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .feature-grid,
  .post-grid,
  .testimonial-slider,
  .team-grid,
  .values-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
  }
  
  .hero,
  .features,
  .recent-posts,
  .testimonials,
  .cta,
  .consultation-info,
  .consultation-form,
  .about-mission,
  .about-history,
  .about-team,
  .about-values,
  .contact-content,
  .map-section,
  .faq-section,
  .blog-content,
  .related-posts {
    padding: 3rem 0;
  }
  
  .section-title,
  .hero h2,
  .cta h2,
  .page-banner h2 {
    font-size: 1.8rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

/* Reduced font size support */
.font-size-reduced {
  font-size: 14px;
}

.font-size-reduced h1 {
  font-size: 1.8rem;
}

.font-size-reduced h2 {
  font-size: 1.6rem;
}

.font-size-reduced h3 {
  font-size: 1.3rem;
}

.font-size-reduced .navbar a {
  font-size: 0.95rem;
}

/* Accessibility */
:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
