/* CSS Custom Properties */
:root {
  /* Primary Colors - Luxury Gold Theme */
  --primary: 45 65% 53%; /* #C4A747 - Champagne Gold */
  --primary-dark: 45 65% 43%; /* #A08D39 */
  --primary-light: 45 65% 63%; /* #D4BB5A */
  
  /* Neutral Colors */
  --background: 210 11% 98%; /* #F5F7FA */
  --surface: 0 0% 100%; /* #FFFFFF */
  --surface-secondary: 210 14% 97%; /* #F1F3F5 */
  
  /* Text Colors */
  --text-primary: 215 25% 27%; /* #2D3748 */
  --text-secondary: 215 15% 45%; /* #4A5568 */
  --text-muted: 215 10% 60%; /* #718096 */
  
  /* Border and Divider Colors */
  --border: 215 20% 93%; /* #E2E8F0 */
  --border-hover: 215 25% 88%; /* #CBD5E0 */
  
  /* Status Colors */
  --success: 142 76% 36%; /* #38A169 */
  --warning: 38 92% 50%; /* #D69E2E */
  --error: 0 84% 60%; /* #E53E3E */
  
  /* Shadows and Effects */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 5rem 0;
  --content-padding: 2rem;
  
  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--text-primary));
  background-color: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
  color: hsl(var(--text-secondary));
}

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

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

/* Layout Components */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-base);
  line-height: 1.5;
}

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

.btn-primary:hover {
  background-color: hsl(var(--primary-dark));
  border-color: hsl(var(--primary-dark));
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: hsl(var(--surface));
  color: hsl(var(--text-primary));
  border-color: hsl(var(--border));
}

.btn-secondary:hover {
  background-color: hsl(var(--surface-secondary));
  border-color: hsl(var(--border-hover));
  color: hsl(var(--text-primary));
}

.btn-outline {
  background-color: transparent;
  color: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

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

/* Header and Navigation */
.header {
  background-color: hsl(var(--surface));
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-menu a {
  color: hsl(var(--text-primary));
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: hsl(var(--text-primary));
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--surface-secondary)) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: hsl(var(--text-primary));
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: hsl(var(--text-secondary));
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  text-align: center;
}

.hero-icon {
  width: 100%;
  max-width: 400px;
  height: auto;
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

/* Section Styles */
section {
  padding: var(--section-padding);
}

.section-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--text-secondary));
  text-align: center;
  margin-bottom: 3rem;
}

/* Services Section */
.services {
  background-color: hsl(var(--surface));
}

.services h2 {
  text-align: center;
  margin-bottom: 1rem;
}

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

.service-card {
  background-color: hsl(var(--surface));
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-base);
  border: 1px solid hsl(var(--border));
}

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

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: hsl(var(--primary));
}

.service-card h3 {
  margin-bottom: 1rem;
  color: hsl(var(--text-primary));
}

.service-card p {
  color: hsl(var(--text-secondary));
}

/* About Section */
.about {
  background: linear-gradient(135deg, hsl(var(--surface-secondary)) 0%, hsl(var(--background)) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  font-family: var(--font-secondary);
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--text-muted));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Testimonials Section */
.testimonials {
  background-color: hsl(var(--surface));
}

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

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

.testimonial {
  background-color: hsl(var(--background));
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: hsl(var(--primary));
  font-family: var(--font-secondary);
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.testimonial-author strong {
  color: hsl(var(--text-primary));
  font-weight: 600;
}

.testimonial-author span {
  color: hsl(var(--text-muted));
  font-size: 0.875rem;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
  color: white;
}

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

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

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.newsletter-form {
  max-width: 400px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-checkbox {
  text-align: left;
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.form-checkbox input {
  margin-top: 0.125rem;
}

.form-checkbox a {
  color: white;
  text-decoration: underline;
}

/* Contact Section */
.contact {
  background-color: hsl(var(--surface));
}

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

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

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item h3 {
  margin-bottom: 0.5rem;
  color: hsl(var(--text-primary));
}

.contact-item p {
  color: hsl(var(--text-secondary));
  margin: 0;
}

.contact-form {
  background-color: hsl(var(--background));
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsla(var(--primary), 0.1);
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background-color: hsl(var(--text-primary));
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 32px;
  height: 32px;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.footer-section ul li a:hover {
  color: hsl(var(--primary));
}

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

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.social-links a:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Blog Styles */
.blog-header {
  padding: 6rem 0 3rem;
  background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--surface-secondary)) 100%);
  text-align: center;
}

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

.articles-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.article-card {
  background-color: hsl(var(--surface));
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 1px solid hsl(var(--border));
}

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

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-category {
  background-color: hsl(var(--primary));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-meta time {
  color: hsl(var(--text-muted));
  font-size: 0.875rem;
}

.article-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.article-card h2 a {
  color: hsl(var(--text-primary));
  transition: var(--transition-fast);
}

.article-card h2 a:hover {
  color: hsl(var(--primary));
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.author strong {
  color: hsl(var(--text-primary));
  font-weight: 600;
}

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

.read-more {
  color: hsl(var(--primary));
  font-weight: 500;
  transition: var(--transition-fast);
}

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

/* Article Page Styles */
.article-header {
  padding: 6rem 0 2rem;
  background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--surface-secondary)) 100%);
}

.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--text-muted));
}

.breadcrumb a {
  color: hsl(var(--primary));
}

.article-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  max-width: 800px;
}

.author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.reading-time {
  color: hsl(var(--text-muted));
  font-size: 0.875rem;
}

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

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-intro {
  font-size: 1.125rem;
  color: hsl(var(--text-secondary));
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: hsl(var(--surface-secondary));
  border-radius: 0.5rem;
  border-left: 4px solid hsl(var(--primary));
}

.article-body h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid hsl(var(--border));
}

.article-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--primary));
}

.article-body ul,
.article-body ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-footer-cta {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  margin: 3rem 0;
}

.article-footer-cta h3 {
  color: white;
  margin-bottom: 1rem;
}

.article-footer-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.related-articles {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid hsl(var(--border));
}

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

.related-article {
  padding: 1.5rem;
  background-color: hsl(var(--surface-secondary));
  border-radius: 0.5rem;
  transition: var(--transition-base);
}

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

.related-article h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.related-article h4 a {
  color: hsl(var(--text-primary));
}

.related-article h4 a:hover {
  color: hsl(var(--primary));
}

.related-article p {
  font-size: 0.875rem;
  color: hsl(var(--text-muted));
  margin: 0;
}

/* Blog Newsletter */
.blog-newsletter {
  background: linear-gradient(135deg, hsl(var(--surface-secondary)) 0%, hsl(var(--background)) 100%);
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  margin-top: 3rem;
}

/* Legal Pages */
.legal-content {
  padding: 6rem 0 3rem;
}

.last-updated {
  color: hsl(var(--text-muted));
  font-style: italic;
  margin-bottom: 2rem;
}

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

.legal-text h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: hsl(var(--primary));
}

.legal-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-text ul,
.legal-text ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
}

.contact-details {
  background-color: hsl(var(--surface-secondary));
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

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

.cookie-table th {
  background-color: hsl(var(--surface-secondary));
  font-weight: 600;
  color: hsl(var(--text-primary));
}

/* Thank You Page */
.thank-you {
  padding: 6rem 0 3rem;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.benefits-list {
  text-align: left;
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: hsl(var(--surface));
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
}

.next-steps {
  margin: 3rem 0;
}

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

.contact-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: hsl(var(--surface-secondary));
  border-radius: 0.5rem;
}

/* Cookie Banner and Modal */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: hsl(var(--surface));
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  padding: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.cookie-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal-content {
  background-color: hsl(var(--surface));
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-option {
  margin: 1.5rem 0;
  padding: 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
}

.cookie-option p {
  margin: 0.5rem 0 0 1.75rem;
  font-size: 0.875rem;
  color: hsl(var(--text-muted));
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .benefit-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .article-header h1 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .container {
    max-width: none !important;
    padding: 0 !important;
  }
}
