:root {
  --primary-color: #2c5f8d;
  --secondary-color: #3d8bd9;
  --accent-color: #46b5a7;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --background: #ffffff;
  --surface: #f8f9fa;
  --border: #e0e0e0;
  --success: #4caf50;
  --warning: #ff9800;
  --error: #f44336;
  --shadow: rgba(0, 0, 0, 0.1);
}

body.dark-theme {
  --primary-color: #4a8ec2;
  --secondary-color: #5fa3e3;
  --accent-color: #5ec9ba;
  --text-primary: #e8e8e8;
  --text-secondary: #b0b0b0;
  --background: #1e1e1e;
  --surface: #2a2a2a;
  --border: #404040;
  --shadow: rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--background);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container-fluid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.main-header {
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  object-fit: cover;
}

.site-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
}

.primary-nav {
  flex: 1;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
  background: rgba(44, 95, 141, 0.1);
}

.theme-switcher {
  background: var(--primary-color);
  border: none;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.theme-switcher:hover {
  transform: scale(1.1);
  background: var(--secondary-color);
}

.hero-banner {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 4rem;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 95, 141, 0.85), rgba(70, 181, 167, 0.75));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 3rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

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

.btn-primary:hover {
  background: var(--surface);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

.quote-section {
  padding: 3rem 0;
  background: var(--surface);
}

.quote-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--background);
  border-left: 5px solid var(--accent-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.quote-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.daily-quote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.daily-quote footer {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.section-heading {
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.features-grid {
  padding: 5rem 0;
}

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

.feature-box {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--border);
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px var(--shadow);
  border-color: var(--accent-color);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.feature-box h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-box p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.recent-posts-section {
  padding: 5rem 0;
  background: var(--surface);
}

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

.post-preview-card {
  background: var(--background);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.post-preview-card:hover {
  transform: translateY(-5px);
}

.post-thumbnail {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.post-preview-content {
  padding: 2rem;
}

.post-preview-content h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.post-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.view-all-posts {
  text-align: center;
  margin-top: 3rem;
}

.info-section {
  padding: 5rem 0;
}

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

.info-column h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.info-column p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.info-image {
  width: 100%;
  border-radius: 10px;
  margin-top: 1.5rem;
}

.opening-hours,
.services-list {
  list-style: none;
  margin-top: 1rem;
}

.opening-hours li,
.services-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.opening-hours li span {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-block;
  width: 150px;
}

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

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

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

.faq-item summary {
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary-color);
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.site-footer {
  background: var(--primary-color);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

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

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

.footer-column p {
  line-height: 1.7;
  opacity: 0.9;
}

.registration-number {
  font-size: 0.95rem;
  margin-top: 1rem;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-address {
  font-style: normal;
  line-height: 1.8;
}

.footer-address a {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 3px solid var(--accent-color);
  padding: 2rem;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.cookie-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background: #45a049;
}

.cookie-customize {
  background: var(--secondary-color);
  color: white;
}

.cookie-customize:hover {
  background: var(--primary-color);
}

.cookie-decline {
  background: var(--border);
  color: var(--text-primary);
}

.cookie-decline:hover {
  background: var(--text-secondary);
  color: white;
}

.cookie-policy-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.cookie-policy-link:hover {
  text-decoration: underline;
}

.page-header-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.page-description {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.blog-posts-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.blog-post-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  transition: transform 0.3s ease;
}

.blog-post-card:hover {
  transform: translateX(5px);
}

.post-image-wrapper {
  position: relative;
}

.post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.post-card-content {
  padding: 2rem 2rem 2rem 0;
  display: flex;
  flex-direction: column;
}

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

.post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.post-summary {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-read-more {
  background: var(--primary-color);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
  transition: background 0.3s ease;
}

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

.blog-cta-section {
  padding: 4rem 0;
  margin-top: 4rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 15px;
}

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

.cta-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

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

.team-member-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-8px);
}

.team-photo {
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--accent-color);
}

.team-member-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-intro-section {
  padding: 4rem 0;
}

.about-intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-intro-content h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-intro-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.values-section {
  padding: 5rem 0;
  background: var(--surface);
}

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

.value-card {
  background: var(--background);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--border);
  transition: border-color 0.3s ease;
}

.value-card:hover {
  border-color: var(--accent-color);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.mission-section {
  padding: 5rem 0;
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  padding: 3rem;
  border-radius: 12px;
  border-left: 5px solid var(--accent-color);
}

.mission-content h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.mission-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-cta-section {
  padding: 4rem 0;
}

.contact-content-section {
  padding: 4rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--background);
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.3rem;
}

.checkbox-label a {
  color: var(--accent-color);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.btn-submit {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

.contact-info-wrapper {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 12px;
}

.contact-info-block {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.contact-info-block:last-child {
  border-bottom: none;
}

.contact-info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-info-details h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-info-details p,
.contact-info-details address {
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: normal;
}

.contact-info-details a {
  color: var(--accent-color);
  text-decoration: none;
}

.contact-info-details a:hover {
  text-decoration: underline;
}

.contact-hours {
  list-style: none;
}

.contact-hours li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

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

.map-container {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
}

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

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

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: var(--background);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 10px 40px var(--shadow);
}

.modal-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.modal-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.post-article {
  margin-bottom: 4rem;
}

.post-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 3rem 0;
  margin-bottom: 0;
}

.post-header-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.post-category-badge {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.post-title-main {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 800;
}

.post-meta-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 1rem;
  opacity: 0.95;
}

.post-featured-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin-bottom: 3rem;
}

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

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

.post-content .container-fluid {
  max-width: 900px;
}

.post-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.post-content h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.post-disclaimer {
  background: var(--surface);
  border-left: 5px solid var(--warning);
  padding: 1.5rem;
  margin-top: 3rem;
  border-radius: 8px;
}

.post-disclaimer strong {
  color: var(--warning);
  display: block;
  margin-bottom: 0.5rem;
}

.post-navigation {
  background: var(--surface);
  padding: 2rem 0;
  margin-top: 4rem;
}

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

.btn-back-to-blog {
  background: var(--primary-color);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-back-to-blog:hover {
  background: var(--secondary-color);
}

.post-nav-links {
  display: flex;
  gap: 1rem;
}

.post-nav-prev,
.post-nav-next {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.post-nav-prev:hover,
.post-nav-next:hover {
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .header-content {
    flex-wrap: wrap;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .blog-post-card {
    grid-template-columns: 1fr;
  }
  
  .post-image {
    height: 250px;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container-fluid {
    padding: 0 1.5rem;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .grid-layout,
  .posts-preview,
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .info-columns {
    grid-template-columns: 1fr;
  }
  
  .post-title-main {
    font-size: 2rem;
  }
  
  .post-meta-info {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}
