/* CSS Variables */
:root {
  /* Monochromatic Color Scheme - Primary Blues */
  --primary-color: #1e40af;
  --primary-light: #3b82f6;
  --primary-dark: #1e3a8a;
  --primary-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  
  /* Monochromatic Variations */
  --accent-color: #60a5fa;
  --accent-light: #93c5fd;
  --accent-dark: #2563eb;
  
  /* Neutral Colors */
  --background-color: #f8fafc;
  --surface-color: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  /* Glassmorphism Colors */
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: rgba(31, 38, 135, 0.37);
  
  /* Typography */
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Lato', sans-serif;
  --font-size-h1: 3.5rem;
  --font-size-h2: 2.75rem;
  --font-size-h3: 2.25rem;
  --font-size-h4: 1.875rem;
  --font-size-h5: 1.5rem;
  --font-size-h6: 1.25rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  --section-padding: 5rem 0;
  
  /* Animation */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 0.3s;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --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);
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-color);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
  line-height: 1.7;
}

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

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

/* Global Button Styles */
.btn,
button,
.button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: var(--font-size-body);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  min-height: 44px;
  white-space: nowrap;
}

.btn::before,
button::before,
.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-base);
}

.btn:hover::before,
button:hover::before,
.button:hover::before {
  left: 100%;
}

.btn-primary,
.button.is-primary {
  background: var(--primary-gradient);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.button.is-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-outline,
.button.is-outlined {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-outline:hover,
.button.is-outlined:hover {
  background: var(--text-white);
  color: var(--primary-color);
}

.btn-large,
.button.is-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-small,
.button.is-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Read More Links */
.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
  margin-top: var(--spacing-md);
}

.read-more:after {
  content: '→';
  margin-left: var(--spacing-sm);
  transition: var(--transition-base);
}

.read-more:hover {
  color: var(--primary-dark);
  transform: translateX(3px);
}

.read-more:hover:after {
  transform: translateX(3px);
}

/* Header */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-base);
}

.navbar {
  padding: var(--spacing-md) 0;
}

.navbar-brand .title {
  font-size: 1.5rem;
  margin-bottom: 0;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-item {
  font-weight: 500;
  position: relative;
  transition: var(--transition-base);
  padding: 0.5rem 1rem;
  color: #000000 !important;
}

.navbar-item:hover {
  color: var(--accent-color) !important;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition-base);
  transform: translateX(-50%);
}

.navbar-item:hover::after {
  width: 80%;
}

.navbar-burger {
 
}

.container {
  padding: 0 10px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: var(--spacing-xxl) 0;
}

.hero .title,
.hero .subtitle,
.hero .content {
  color: var(--text-white) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease-out;
}

.hero .subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .content {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .buttons {
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Parallax Container */
.parallax-container {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.parallax-container > .container,
.parallax-container > .hero-body {
  position: relative;
  z-index: 2;
}

/* Sections */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.section-title .title {
  position: relative;
  display: inline-block;
}

.section-title .title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
}

/* Cards */
.card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-slow);
  margin: 0 auto;
}

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

.card-content {
  padding: var(--spacing-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-content .title {
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.card-content .content {
  color: var(--text-secondary);
  flex-grow: 1;
}

/* Image Containers */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

/* Services Section */
#services .card-content {
  padding: var(--spacing-xl);
}

#services .card-content .title {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

/* Statistics Widget */
.statistic-widget {
  padding: var(--spacing-xl);
  text-align: center;
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
}

/* Portfolio/Carousel */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  padding: var(--spacing-lg);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text-white);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-base);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: var(--spacing-lg);
}

.carousel-btn-next {
  right: var(--spacing-lg);
}

/* Team Section */
#team .card {
  text-align: center;
}

#team .card-image {
  position: relative;
  height: 300px;
}

#team .card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: var(--transition-base);
}

#team .card:hover .card-image::after {
  opacity: 1;
}

#team .subtitle {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

/* Behind the Scenes */
#behind-scenes {
  background: var(--background-color);
}

.toggle-switch {
  margin-top: var(--spacing-lg);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition-base);
  border-radius: 34px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 0.8rem;
  color: var(--text-primary);
  width: 150px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition-base);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-color);
  color: white;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.switch-text::before {
  content: "Standard";
}

input:checked + .slider .switch-text::before {
  content: "Enhanced";
}

/* Blog Section */
#blog .card {
  height: 100%;
}

#blog .card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#blog .content {
  flex-grow: 1;
  margin-bottom: var(--spacing-lg);
}

.modal-trigger {
  margin-top: auto;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

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

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

.faq-question .title {
  margin-bottom: 0;
  font-size: 1.125rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  transition: var(--transition-base);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

.faq-answer .content {
  padding: 0 var(--spacing-xl) var(--spacing-xl);
  margin-bottom: 0;
}

/* Contact Section */
.contact-form-container {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xxl);
  box-shadow: var(--shadow-xl);
}

.field {
  margin-bottom: var(--spacing-lg);
}

.label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  color: var(--text-white);
}

.input,
.textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: var(--text-white);
  font-family: var(--font-body);
  transition: var(--transition-base);
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.textarea {
  resize: vertical;
  min-height: 120px;
}

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

.modal.is-active {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
}

.modal .box {
  background: var(--surface-color);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xxl);
  text-align: center;
}

.modal .box img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: var(--spacing-lg) 0;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: var(--z-modal);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-primary) 0%, #0f172a 100%);
  color: var(--text-light);
  padding: var(--spacing-xxl) 0 var(--spacing-xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--primary-gradient);
}

.footer .title {
  color: var(--text-white);
  margin-bottom: var(--spacing-lg);
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: var(--spacing-sm);
}

.footer ul li a {
  color: var(--text-light);
  transition: var(--transition-base);
}

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

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

.social-links {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--text-light);
  transition: var(--transition-base);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

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

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: var(--text-white);
  text-align: center;
  padding: var(--spacing-xl);
}

.success-content {
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-xl);
  color: #10b981;
}

/* Privacy and Terms Pages */
.legal-page {
  padding-top: 100px;
  min-height: 100vh;
  background: var(--background-color);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-xxl);
  background: var(--surface-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

.legal-content h2 {
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: var(--spacing-sm);
  margin-top: var(--spacing-xxl);
}

.legal-content p {
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: var(--spacing-lg);
  padding-left: var(--spacing-xl);
}

.legal-content li {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Utility Classes */
.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
}

.hover-lift:hover {
  transform: translateY(-5px);
  transition: var(--transition-base);
}

.hover-scale:hover {
  transform: scale(1.05);
  transition: var(--transition-base);
}

.fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.75rem;
    --section-padding: 3rem 0;
  }

  .hero {
    min-height: 80vh;
  }

  .parallax-container {
    background-attachment: scroll;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .carousel-slide {
    scroll-snap-align: start;
  }

  .columns.is-multiline .column {
    margin-bottom: var(--spacing-xl);
  }

  .social-links {
    justify-content: center;
  }

  .contact-form-container {
    padding: 15px;
    margin: var(--spacing-md);
  }

  .modal-content {
    max-width: 95%;
  }

  .modal .box {
    padding: var(--spacing-xl);
  }
}

@media (max-width: 480px) {
  .btn,
  .button {
    width: 100%;
    margin-bottom: var(--spacing-sm);
  }

  .buttons.is-centered {
    flex-direction: column;
    align-items: center;
  }

  .hero .buttons .btn,
  .hero .buttons .button {
    width: auto;
    min-width: 200px;
  }

  .card-content {
    padding: var(--spacing-lg);
  }

  .faq-question {
    padding: var(--spacing-lg);
  }

  .faq-question .title {
    font-size: 1rem;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #000000;
    --text-secondary: #333333;
    --background-color: #ffffff;
    --surface-color: #ffffff;
  }

  .btn,
  .button {
    border: 2px solid currentColor;
  }
}

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

  .parallax-container {
    background-attachment: scroll;
  }

  .floating {
    animation: none;
  }
}

/* Print Styles */
@media print {
  .header-section,
  .footer,
  .btn,
  .button,
  .carousel-btn,
  .modal,
  .social-links {
    display: none !important;
  }

  .section {
    padding: 1rem 0;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }

  .card, .faq-item {
    page-break-inside: avoid;
  }
}

/* Focus Styles for Accessibility */
.btn:focus,
.button:focus,
input:focus,
textarea:focus,
.navbar-item:focus,
.faq-question:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}