/* ===================================
   Variables and Reset
   =================================== */
:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --error-color: #ef4444;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  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.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===================================
   Container and Layout
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  pointer-events: none;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
  pointer-events: none;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  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(37, 99, 235, 0.9), rgba(30, 64, 175, 0.85));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-lead {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: #d97706;
  border-color: #d97706;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--bg-white);
  border-color: var(--bg-white);
}

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

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

.btn-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* ===================================
   Features Section
   =================================== */
.features {
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

/* ===================================
   Services Section
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

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

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ===================================
   Team Section
   =================================== */
.team {
  background: var(--bg-light);
}

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

.team-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

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

.team-card h3 {
  font-size: 1.25rem;
  margin: 20px 0 5px;
  color: var(--text-dark);
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.team-card p {
  padding: 0 20px 25px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 60px 0 20px;
}

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

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: var(--bg-white);
}

.footer-col p {
  color: #9ca3af;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #9ca3af;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  text-align: center;
  padding: 80px 0;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.95;
}

/* ===================================
   About Page
   =================================== */
.about-content {
  padding: 80px 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.about-intro img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.mission-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

.stats-section {
  background: var(--bg-light);
  padding: 60px 40px;
  border-radius: 12px;
  margin-bottom: 80px;
}

.stats-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

.process-section {
  margin-bottom: 80px;
}

.process-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-intro {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  font-size: 1.125rem;
}

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

.process-step {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  pointer-events: none;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  margin-top: 10px;
}

.process-step p {
  color: var(--text-light);
  line-height: 1.7;
}

.why-choose-us {
  background: var(--bg-light);
  padding: 60px 40px;
  border-radius: 12px;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-dark);
}

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

.reason-item h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.reason-item p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ===================================
   Contact Page
   =================================== */
.contact-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-info > p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.info-content a {
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

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

.info-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

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

.form-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.form-checkbox label {
  font-weight: 400;
}

.map-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.map-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.map-section > .container > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.faq-section {
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--text-dark);
}

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border-color);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: var(--bg-white);
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
  pointer-events: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg-light);
}

.faq-answer p {
  padding: 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

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

/* ===================================
   Blog Page
   =================================== */
.blog-section {
  padding: 80px 0;
}

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

.blog-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.blog-image {
  position: relative;
}

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

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: var(--bg-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  pointer-events: none;
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 0.875rem;
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.blog-content h2 a {
  color: var(--text-dark);
}

.blog-content h2 a:hover {
  color: var(--primary-color);
}

.blog-content > p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.newsletter-section {
  background: var(--bg-light);
  padding: 80px 0;
}

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

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.newsletter-content p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
}

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

/* ===================================
   Article Page
   =================================== */
.article-page {
  padding-top: 0;
}

.article-header {
  background: var(--bg-light);
  padding: 60px 0 40px;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-category {
  background: var(--accent-color);
  color: var(--bg-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.article-date,
.article-read {
  color: var(--text-light);
  font-size: 0.875rem;
}

.article-header h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.3;
}

.article-lead {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.article-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.article-author strong {
  display: block;
  color: var(--text-dark);
}

.article-author span {
  color: var(--text-light);
  font-size: 0.875rem;
}

.article-featured-image {
  margin-bottom: 50px;
}

.article-featured-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.article-content {
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-content h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
  color: var(--text-dark);
}

.article-content h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: var(--text-dark);
}

.article-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.article-content ul {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 20px;
}

.article-content ul li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.article-content a {
  color: var(--primary-color);
  font-weight: 600;
}

.article-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.article-related {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 50px;
  border-top: 2px solid var(--border-color);
}

.article-related h3 {
  font-size: 1.75rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

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

.related-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

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

.related-card h4 {
  padding: 20px;
  color: var(--text-dark);
  font-size: 1.125rem;
}

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

/* ===================================
   Legal Pages
   =================================== */
.legal-content {
  padding: 80px 0;
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-text h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
  color: var(--text-dark);
}

.legal-text h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: var(--text-dark);
}

.legal-text p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.legal-text ul {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 20px;
}

.legal-text ul li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.legal-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

.legal-text a {
  color: var(--primary-color);
  font-weight: 600;
}

.legal-text a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* ===================================
   Cookie Banner
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 20px;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-content p {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--accent-color);
}

.btn-cookie {
  padding: 10px 25px;
  background: var(--accent-color);
  color: var(--bg-white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cookie:hover {
  background: #d97706;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: var(--bg-white);
    padding: 30px 20px;
    box-shadow: var(--shadow-lg);
    transition: left 0.3s ease;
    gap: 20px;
  }

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

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

  .hero-lead {
    font-size: 1.125rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .article-header h1 {
    font-size: 1.75rem;
  }

  .article-featured-image img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .features-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}
