/* 
  Negocios en Argentina - Main Stylesheet
  A modern, responsive design for a business blog focused on Argentina
*/

/* Base Styles & Reset */
:root {
  --primary-color: #0a66c2;
  --secondary-color: #1e3a8a;
  --accent-color: #ffd700;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f8f9fa;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #3b82f6;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 0.5rem;
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-secondary: 'Merriweather', Georgia, 'Times New Roman', Times, serif;
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

ul li, ol li {
  margin-bottom: 0.5rem;
}

button, .btn, input[type="submit"] {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

button:hover, .btn:hover, input[type="submit"]:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

button:focus, .btn:focus, input[type="submit"]:focus {
  outline: none;
}

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

/* Header & Navigation */
header {
  background-color: var(--background-color);
  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;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

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

nav {
  display: flex;
  align-items: center;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
}

.main-menu li {
  margin: 0 1rem;
  margin-bottom: 0;
}

.main-menu a {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem;
  position: relative;
}

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

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

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

.mobile-menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 10px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-color: var(--secondary-color);
  color: white;
  padding: 5rem 0;
  text-align: center;
  background-image: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.95)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

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

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

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

.stat-title {
  font-size: 1.1rem;
  color: var(--text-light);
}

.counter-box {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.counter-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.counter-number {
  font-size: 1.5rem;
  font-weight: 700;
}

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

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

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

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

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

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

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

.post-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

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

.read-more {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-top: auto;
}

.read-more svg {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.read-more:hover svg {
  transform: translateX(5px);
}

/* Newsletter Section */
.newsletter {
  background-color: var(--secondary-color);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

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

.newsletter p {
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 1rem;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 1rem;
}

.newsletter-form button {
  border-radius: 0 var(--radius) var(--radius) 0;
  background-color: var(--accent-color);
  color: var(--text-color);
  padding: 1rem 2rem;
}

.newsletter-form button:hover {
  background-color: darken(var(--accent-color), 10%);
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #e5e5e5;
  padding: 4rem 0 2rem;
}

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

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-column p {
  color: #b3b3b3;
  margin-bottom: 1rem;
}

.registration {
  font-size: 0.9rem;
  color: #888;
}

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

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

.footer-column a {
  color: #b3b3b3;
  transition: var(--transition);
}

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

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: white;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: #888;
}

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

.legal-links a {
  color: #888;
  font-size: 0.9rem;
}

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

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

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

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  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: 1rem;
  margin: 1rem 0;
}

.btn-accept {
  background-color: var(--success-color);
}

.btn-customize {
  background-color: var(--info-color);
}

.btn-reject {
  background-color: transparent;
  border: 1px solid white;
}

.cookie-more-info {
  color: #aaa;
  text-decoration: underline;
  margin-left: auto;
}

.cookie-more-info:hover {
  color: white;
}

/* Post Content Page */
.post-content {
  padding: 4rem 0;
}

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

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

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

.post-meta span {
  margin-right: 1.5rem;
}

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

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

.post-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

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

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

.post-body p {
  margin-bottom: 1.5rem;
}

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

.post-body li {
  margin-bottom: 0.75rem;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.previous-post, .next-post, .back-to-blog {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.previous-post svg, .next-post svg {
  transition: transform 0.3s ease;
}

.previous-post:hover svg {
  transform: translateX(-5px);
}

.next-post:hover svg {
  transform: translateX(5px);
}

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

.share-post h3 {
  margin-bottom: 1.5rem;
}

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

.share-button {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  color: white;
  font-weight: 600;
  transition: var(--transition);
}

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

.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 {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: white;
}

.related-posts {
  margin-top: 4rem;
}

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

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

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

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

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

.related-post h4 {
  padding: 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-color);
  transition: var(--transition);
}

.related-post:hover h4 {
  color: var(--primary-color);
}

/* About Page */
.about-header {
  background-color: var(--secondary-color);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

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

.subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-mission, .about-story {
  padding: 5rem 0;
}

.about-mission .container, .about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

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

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

.about-story {
  background-color: var(--background-alt);
}

.team-section {
  padding: 5rem 0;
  text-align: center;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

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

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

.team-member:hover img {
  transform: scale(1.05);
}

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

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

.team-member p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
}

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

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

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

.about-values {
  padding: 5rem 0;
  background-color: var(--background-alt);
  text-align: center;
}

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

.value-card {
  background-color: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

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

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

.about-cta {
  padding: 5rem 0;
  text-align: center;
  background-color: var(--primary-color);
  color: white;
}

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

.about-cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
}

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

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

.btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--text-color);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

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

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

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

.contact-info-section {
  padding: 4rem 0;
  background-color: var(--background-alt);
}

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

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

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

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

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

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

.contact-form-section {
  padding: 5rem 0;
}

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

.contact-form-column h2, .contact-map-column h2 {
  margin-bottom: 1.5rem;
}

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

.contact-form {
  margin-top: 2rem;
}

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

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

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

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

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

.checkbox-group input {
  width: auto;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.map-container {
  height: 300px;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-additional-info {
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-additional-info h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

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

.faq-section {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

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

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

.faq-item {
  background-color: white;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.faq-question:hover {
  background-color: #f9f9f9;
}

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

.faq-toggle {
  transition: transform 0.3s ease;
}

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

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

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

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: modalFadeIn 0.4s ease;
}

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

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

.close-modal:hover {
  color: var(--text-color);
}

.thank-you-content {
  text-align: center;
}

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

.thank-you-content h2 {
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  margin-bottom: 1rem;
}

.thank-you-content button {
  margin-top: 1.5rem;
}

/* Blog Post Specific Styles */
.step-box {
  display: flex;
  margin-bottom: 3rem;
  background-color: var(--background-alt);
  border-radius: var(--radius);
  overflow: hidden;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  background-color: var(--primary-color);
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}

.step-content {
  padding: 2rem;
}

.step-content h2 {
  margin-top: 0;
  color: var(--primary-color);
}

.tip-box {
  background-color: rgba(255, 215, 0, 0.15);
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.tip-box h4 {
  margin-top: 0;
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tip-box p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-mission .container, .about-story .container, .contact-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .story-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  .main-menu.show {
    transform: translateY(0);
  }
  
  .main-menu li {
    margin: 1rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .post-header h1 {
    font-size: 2.2rem;
  }
  
  .posts-grid, .team-grid, .values-grid, .contact-info-grid, .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input[type="email"] {
    border-radius: var(--radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--radius);
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  .step-box {
    flex-direction: column;
  }
  
  .step-number {
    min-width: auto;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p, .subtitle {
    font-size: 1.1rem;
  }
  
  .share-buttons {
    flex-wrap: wrap;
  }
  
  .share-button {
    flex: 1 1 45%;
  }
  
  .stat-box {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }
}
