/* Base Styles */
:root {
  --primary-color: #26a69a;
  --primary-dark: #00796b;
  --primary-light: #b2dfdb;
  --secondary-color: #ff9800;
  --secondary-dark: #f57c00;
  --text-color: #333333;
  --text-light: #757575;
  --background-color: #ffffff;
  --background-alt: #f9f9f9;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ff9800;
  --info-color: #2196f3;
  --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-secondary: 'Montserrat', 'Roboto', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease-in-out;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-primary);
  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: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

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

.btn-spell-check {
  background-color: rgba(38, 166, 154, 0.15);
  color: var(--primary-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.btn-spell-check:hover {
  background-color: rgba(38, 166, 154, 0.25);
}

/* Header & Navigation */
header {
  background-color: var(--background-color);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.navbar {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

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

.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu span {
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-color: var(--primary-light);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, rgba(178, 223, 219, 0.9), rgba(38, 166, 154, 0.8)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-color);
}

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

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

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

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

.feature-card {
  background-color: var(--background-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

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

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

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

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

/* Latest Posts Section */
.latest-posts {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

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

.view-all {
  color: var(--primary-color);
  font-weight: 500;
}

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

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

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

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

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

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

.post-content {
  padding: 1.5rem;
}

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

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

.post-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

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

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

/* Newsletter Section */
.newsletter {
  padding: 5rem 0;
  background-color: var(--primary-light);
  background-image: linear-gradient(135deg, rgba(178, 223, 219, 0.9), rgba(38, 166, 154, 0.8));
  color: white;
}

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

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

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

.form-group {
  display: flex;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

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

.form-group input:focus {
  outline: none;
}

.form-group button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Footer */
footer {
  background-color: #1f2937;
  color: #e5e7eb;
  padding: 5rem 0 2rem;
}

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

.footer-about {
  grid-column: span 2;
}

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

.footer-about p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

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

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

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

footer h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

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

footer ul li a {
  color: #e5e7eb;
  opacity: 0.8;
  transition: var(--transition);
}

footer ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.footer-contact svg {
  margin-right: 0.5rem;
}

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

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #e5e7eb;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1 1 100%;
}

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

.cookie-more {
  color: var(--primary-light);
  text-decoration: underline;
  margin-left: 1rem;
}

/* Page Header */
.page-header {
  background-color: var(--primary-light);
  padding: 5rem 0;
  text-align: center;
  background-image: linear-gradient(135deg, rgba(178, 223, 219, 0.9), rgba(38, 166, 154, 0.8));
  color: white;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

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

/* Blog Page */
.blog-content {
  padding: 5rem 0;
}

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

/* About Page */
.about-content {
  padding: 5rem 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-text h2 {
  margin-top: 0;
}

.team-section {
  margin-bottom: 5rem;
}

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

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

.team-member img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.value-card {
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
}

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

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

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

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

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

.info-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

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

.contact-form-container {
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--radius-md);
}

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

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.contact-form .form-group:nth-child(5),
.contact-form .form-group:nth-child(6),
.contact-form button {
  grid-column: span 2;
}

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

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  background-color: var(--background-color);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(38, 166, 154, 0.2);
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
}

.map-section {
  padding-bottom: 5rem;
}

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

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

.modal-content {
  background-color: var(--background-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
}

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

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

/* Blog Post */
.post-header {
  background-color: var(--primary-light);
  padding: 5rem 0;
  background-image: linear-gradient(135deg, rgba(178, 223, 219, 0.9), rgba(38, 166, 154, 0.8));
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.post-category {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
}

.post-header h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
  object-fit: cover;
}

.post-content {
  padding: 5rem 0;
}

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

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

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

.post-text h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.post-image-secondary {
  margin: 2rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.post-image-secondary figcaption {
  background-color: var(--background-alt);
  padding: 0.75rem;
  font-style: italic;
  color: var(--text-light);
  text-align: center;
}

.post-quote {
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  background-color: var(--background-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.post-quote p {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.post-quote cite {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: var(--text-light);
}

.post-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.post-table th,
.post-table td {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  text-align: left;
}

.post-table th {
  background-color: var(--background-alt);
  font-weight: 600;
}

.post-table tr:nth-child(even) {
  background-color: var(--background-alt);
}

.table-caption {
  font-style: italic;
  color: var(--text-light);
  text-align: right;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.post-conclusion {
  margin: 3rem 0;
  padding: 2rem;
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
}

.post-conclusion p {
  margin-bottom: 0;
}

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

.tag-label {
  margin-right: 1rem;
  font-weight: 500;
}

.tag {
  display: inline-block;
  background-color: var(--background-alt);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

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

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

.post-share span {
  margin-right: 1rem;
  font-weight: 500;
}

.share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--background-alt);
  color: var(--text-color);
  margin-right: 0.5rem;
}

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

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

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

.nav-previous,
.nav-next {
  max-width: 45%;
}

.nav-subtitle {
  display: block;
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.nav-title {
  font-weight: 500;
}

.nav-previous .nav-title:before {
  content: "« ";
}

.nav-next .nav-title:after {
  content: " »";
}

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

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

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .about-intro {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid,
  .values-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header .container {
    height: 70px;
  }
  
  .navbar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    padding: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }
  
  .navbar.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .navbar li {
    margin: 0 0 1rem;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .contact-form .form-group:nth-child(5),
  .contact-form .form-group:nth-child(6),
  .contact-form button {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-about {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .features,
  .latest-posts,
  .newsletter,
  .blog-content,
  .about-content,
  .contact-content,
  .post-content {
    padding: 3rem 0;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .form-group input,
  .form-group button {
    width: 100%;
  }
  
  .form-group button {
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
  }
  
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav-previous,
  .nav-next {
    max-width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-more {
    margin-left: 0;
    text-align: center;
  }
}

/* Transparencia en algunos elementos */
.feature-card {
  background-color: rgba(255, 255, 255, 0.9);
}

.newsletter-content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-md);
}

.post-card {
  background-color: rgba(255, 255, 255, 0.9);
}

.value-card {
  background-color: rgba(249, 249, 249, 0.8);
}

.post-quote {
  background-color: rgba(249, 249, 249, 0.8);
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero, .post-header {
  animation: fadeIn 1s ease-in-out;
}

.posts-grid, .features-grid, .team-grid, .values-grid {
  animation: fadeIn 1.2s ease-in-out;
}

/* Estilos adicionales para mejor visualización */
.post-image-main img, .post-image-secondary img {
  display: block;
  width: 100%;
}

.post-table {
  overflow-x: auto;
  display: block;
}

@media (min-width: 768px) {
  .post-table {
    display: table;
  }
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
