/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a4d7c;
  --secondary-color: #2d6ca6;
  --accent-color: #3b82f6;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

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

.container-fluid {
  max-width: 100%;
  padding: 0 20px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Read Progress Bar */
#readProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Header Styles */
.main-header {
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-section img {
  border-radius: 8px;
}

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

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-color);
  background: var(--bg-light);
}

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

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 100px 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

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

.btn-primary-large {
  background: var(--accent-color);
  color: white;
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-primary-large:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-text {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.btn-text:hover {
  gap: 12px;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
}

/* Learning Outcomes */
.learning-outcomes {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.outcome-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.outcome-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.outcome-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Features Section */
.features-section {
  padding: 80px 0;
}

.features-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.feature-list {
  list-style: none;
  margin: 30px 0;
}

.feature-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 1.1rem;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.3rem;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

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

.service-card h3 {
  padding: 25px 25px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.service-card p {
  padding: 0 25px 25px;
  color: var(--text-light);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Blog Styles */
.blog-preview,
.blog-listing {
  padding: 80px 0;
}

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

.blog-card,
.blog-post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover,
.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.blog-card-content,
.post-content {
  padding: 25px;
}

.blog-card h3 a,
.blog-post-card h2 a {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 15px;
  display: block;
  transition: color 0.3s ease;
}

.blog-card h3 a:hover,
.blog-post-card h2 a:hover {
  color: var(--accent-color);
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 15px;
}

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

.post-category {
  background: var(--bg-light);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--primary-color);
}

.read-more,
.read-more-btn {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}

.read-more:hover,
.read-more-btn:hover {
  gap: 10px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* White Paper Styles */
.whitepaper-content {
  padding: 60px 0;
}

.whitepaper-content .container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}

.wp-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.wp-navigation {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
}

.wp-navigation h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.wp-navigation ul {
  list-style: none;
}

.wp-navigation li {
  margin-bottom: 12px;
}

.wp-navigation a {
  color: var(--text-dark);
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: block;
  padding: 5px 0;
}

.wp-navigation a:hover {
  color: var(--accent-color);
  padding-left: 10px;
}

.wp-section {
  margin-bottom: 60px;
}

.wp-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--accent-color);
}

.wp-section h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin: 30px 0 15px;
}

.wp-section img {
  margin: 30px 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.wp-section p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 40px 0;
}

.cta-box h3 {
  color: white;
  margin-bottom: 15px;
}

.disclaimer-box {
  background: #fff3cd;
  border-left: 4px solid var(--warning-color);
  padding: 25px;
  border-radius: 8px;
  margin: 40px 0;
}

.disclaimer-box h4 {
  color: var(--warning-color);
  margin-bottom: 15px;
}

.disclaimer-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Blog Post Styles */
.blog-post {
  background: white;
}

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

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

.post-header h1 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.post-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
}

.post-featured-image {
  max-width: 1200px;
  margin: -40px auto 0;
  padding: 0 20px;
}

.post-featured-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.post-content {
  padding: 60px 0;
}

.content-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

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

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

.content-wrapper p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.content-wrapper img {
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

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

.related-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

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

.related-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.related-card h3 a {
  color: var(--primary-color);
}

.related-card p {
  padding: 0 20px 20px;
  color: var(--text-light);
}

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

.story-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.story-content img {
  margin: 30px 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}

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

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

.value-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

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

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

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

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

.team-member img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.member-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.member-bio {
  color: var(--text-light);
  line-height: 1.7;
}

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

.approach-content {
  display: grid;
  gap: 30px;
}

.approach-item h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.approach-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 1.5fr;
  gap: 60px;
}

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

.contact-details {
  margin: 40px 0;
}

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

.detail-icon {
  font-size: 2rem;
  color: var(--accent-color);
}

.detail-content h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

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

.map-placeholder img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-top: 30px;
}

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

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

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

.contact-form textarea {
  resize: vertical;
}

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

.faq-grid {
  display: grid;
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

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

.modal.show {
  display: flex;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
}

.modal-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

.modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.newsletter-box {
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-box h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

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

.newsletter-form button {
  padding: 14px 30px;
  border: none;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
}

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

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

/* Footer */
.main-footer {
  background: var(--text-dark);
  color: 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 h3,
.footer-col h4 {
  margin-bottom: 20px;
  color: white;
}

.footer-col p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-color);
}

.footer-reg {
  font-size: 0.9rem;
  margin-top: 15px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 25px;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-content h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

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

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

.cookie-btn.accept:hover {
  background: #059669;
}

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

.cookie-btn.decline:hover {
  background: #d1d5db;
}

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

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

.cookie-link {
  color: var(--accent-color);
  text-decoration: underline;
  font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-wrapper {
    grid-template-columns: 1fr;
  }
  
  .whitepaper-content .container {
    grid-template-columns: 1fr;
  }
  
  .wp-sidebar {
    position: static;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  
  .main-nav li {
    border-bottom: 1px solid var(--border-color);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .outcomes-grid,
  .services-grid,
  .blog-grid,
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 1.2rem;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}