@import "https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css";

:root {
  --primary-blue: #2563eb;
  --primary-blue-light: #3b82f6;
  --primary-blue-dark: #1d4ed8;
  --accent-orange: #f59e0b;
  --accent-orange-light: #fbbf24;
  --text-dark: #0f172a;
  --text-gray: #334155;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --background-light: #f8fafc;
  --background-white: #ffffff;
  --card-white: #ffffff;
  --border-light: #e2e8f0;
  --success-green: #10b981;
  --warning-yellow: #f59e0b;
  --danger-red: #ef4444;
  --shadow-light: rgba(15, 23, 42, 0.08);
  --shadow-medium: rgba(15, 23, 42, 0.12);
  --shadow-heavy: rgba(15, 23, 42, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar {
  background-color: var(--background-white) !important;
  box-shadow: 0 1px 3px var(--shadow-light), 0 1px 2px var(--shadow-light);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.navbar-brand .navbar-item {
  color: var(--primary-blue) !important;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.navbar-brand .navbar-item:hover {
  color: var(--primary-blue-dark) !important;
  transform: translateX(2px);
}

.navbar-item .button.is-primary {
  color: var(--card-white) !important;
}

.navbar-item .button.is-primary:hover {
  color: var(--card-white);
}

.navbar-menu a {
  color: var(--text-dark) !important;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 0.75rem !important;
  border-radius: 8px;
}

.navbar-menu a:hover {
  color: var(--primary-blue) !important;
  background-color: rgba(37, 99, 235, 0.08);
}

.navbar-burger {
  color: var(--text-dark) !important;
}

.hero {
  background: linear-gradient(135deg, #e0f2fe 0%, #f1f5f9 50%, #ffffff 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
}

.hero.is-small {
  color: var(--text-gray);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(241, 245, 249, 0.8) 100%);
  pointer-events: none;
}

.hero.has-background-image {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 1;
}

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

.section {
  padding: 4rem 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.section-title {
  color: var(--primary-blue);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.02em;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 500;
}

.box {
  background-color: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
  transition: left 0.5s ease;
}

.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-medium);
  border-color: rgba(37, 99, 235, 0.2);
}

.box:hover::before {
  left: 100%;
}

.card {
  background-color: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px var(--shadow-medium);
  border-color: rgba(37, 99, 235, 0.2);
}

.card-content {
  padding: 2.5rem;
}

.button.is-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  border-color: transparent;
  color: white;
  font-weight: 700;
  padding: 0.9rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button.is-primary::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: left 0.5s ease;
}

.button.is-primary:hover {
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.button.is-primary:hover::before {
  left: 100%;
}

.button.is-outline {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 700;
  padding: 0.8rem 2.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.button.is-outline:hover {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

.notification {
  background-color: var(--card-white);
  border-left: 4px solid var(--primary-blue);
  color: var(--text-dark);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px var(--shadow-light);
}

.title {
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.subtitle {
  color: var(--text-gray);
  font-weight: 500;
}

p {
  color: var(--text-gray);
  line-height: 1.7;
}

.price-tag {
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 24px;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 1rem;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
}

.price-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.service-card .title {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  transition: all 0.3s ease;
  padding: 0.75rem;
  border-radius: 12px;
}

.feature-item:hover {
  background-color: rgba(37, 99, 235, 0.05);
  transform: translateX(5px);
}

.feature-item .icon {
  color: var(--primary-blue);
  margin-right: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--card-white), #f8fafc);
  border-left: 4px solid var(--primary-blue);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px var(--shadow-light);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(37, 99, 235, 0.2);
  font-family: serif;
}

.testimonial-author {
  color: var(--primary-blue);
  font-weight: 700;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form .field-label {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  background-color: var(--card-white);
  border: 2px solid var(--border-light);
  color: var(--text-dark);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 0 rgba(37, 99, 235, 0.05) inset;
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
  transform: translateY(-1px);
}

.contact-form .input::placeholder,
.contact-form .textarea::placeholder {
  color: var(--text-muted);
}

.footer {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem 0;
  color: var(--text-dark);
}

.footer-content h3 {
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  border-radius: 2px;
}

.footer-content a {
  color: var(--text-gray);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.footer-content a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  transition: width 0.3s ease;
}

.footer-content a:hover {
  color: var(--primary-blue);
}

.footer-content a:hover::after {
  width: 100%;
}

.contact-info {
  color: var(--text-gray);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.contact-info:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

.contact-info .icon {
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--card-white);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 400px;
  z-index: 1000;
  box-shadow: 0 20px 60px var(--shadow-heavy);
  border: 1px solid rgba(37, 99, 235, 0.2);
  backdrop-filter: blur(10px);
}

.cookie-consent-banner .title {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.cookie-consent-banner .content {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-buttons .button {
  flex: 1;
  min-width: 140px;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: 10px;
}

.accordion-header {
  background-color: var(--card-white);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.accordion-header:hover {
  background-color: rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.accordion-header .title {
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
}

.accordion-icon {
  color: var(--primary-blue);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

.accordion-content {
  background-color: var(--card-white);
  border: 2px solid var(--border-light);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 1.5rem;
  display: none;
  box-shadow: 0 4px 15px var(--shadow-light);
  animation: slideDown 0.3s ease;
}

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

.accordion-content.active {
  display: block;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.team-member .card-image img {
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .card-image img {
  transform: scale(1.05);
}

.team-member .title {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.team-member .subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.heatmap-background {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.heatmap-background::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  animation: heat-pulse 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes heat-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.2; }
  50% { transform: scale(1.1) rotate(180deg); opacity: 0.4; }
}

.heatmap-background .hero-content {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .hero {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .box {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .cookie-consent-banner {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .accordion-header {
    padding: 1rem;
  }
  
  .accordion-content {
    padding: 1rem;
  }
  
  .navbar-brand .navbar-item {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero {
    min-height: 60vh;
  }
  
  .box {
    padding: 1rem;
  }
  
  .card-content {
    padding: 1rem;
  }
  
  .button.is-primary,
  .button.is-outline {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }
}

strong, b {
  color: inherit;
  font-weight: 800;
}

.has-text-grey-light {
  color: var(--text-muted) !important;
}

.field {
  margin-bottom: 1.5rem;
}

.field-label {
  margin-bottom: 0.5rem;
}

.field.is-grouped {
  display: flex;
  justify-content: flex-start;
}

.field.is-grouped .control {
  margin-right: 0.75rem;
}

.control {
  position: relative;
}

.checkbox {
  display: inline-flex;
  align-items: center;
}

.checkbox input {
  margin-right: 0.5rem;
}

.input, .textarea, .select select {
  width: 100%;
  max-width: 100%;
}

.select.is-fullwidth select {
  width: 100%;
}

.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-5 { margin-top: 1.25rem !important; }
.mt-6 { margin-top: 1.5rem !important; }

.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.25rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }

.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 0.75rem !important; }
.ml-4 { margin-left: 1rem !important; }

.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 0.75rem !important; }
.mr-4 { margin-right: 1rem !important; }

.icon-text {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

/* Additional modern enhancements */
.progress-bar {
  height: 8px;
  background-color: var(--border-light);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  width: 0%;
  transition: width 1s ease;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--card-white), #f1f5f9);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-weight: 600;
  color: var(--text-gray);
  box-shadow: 0 4px 15px var(--shadow-light);
}

.badge.primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  color: white;
  border-color: transparent;
}

.badge.success {
  background: linear-gradient(135deg, var(--success-green), #10b981);
  color: white;
  border-color: transparent;
}

.badge.warning {
  background: linear-gradient(135deg, var(--accent-orange), #d97706);
  color: white;
  border-color: transparent;
}

.stat-card {
  background: linear-gradient(135deg, var(--card-white), #f8fafc);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

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

.stat-label {
  color: var(--text-gray);
  font-weight: 600;
}

/* Floating animation for hero elements */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

/* Glassmorphism effect for modern look */
.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.6));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

/* Subtle gradient backgrounds */
.gradient-bg-1 {
  background: linear-gradient(135deg, #e0f2fe 0%, #f1f5f9 50%, #ffffff 100%);
}

.gradient-bg-2 {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
}

/* Modern button variants */
.button.is-ghost {
  background: transparent;
  border: 2px solid var(--border-light);
  color: var(--text-dark);
  font-weight: 700;
  padding: 0.8rem 2.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.button.is-ghost:hover {
  background: var(--card-white);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

/* Enhanced form styling */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

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

.form-group .form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  background: var(--card-white);
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-group .form-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
  transform: translateY(-1px);
}

.form-group .form-input::placeholder {
  color: var(--text-muted);
}

/* Modern card hover effects */
.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.08), transparent);
  transition: left 0.6s ease;
}

.card-hover:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px var(--shadow-heavy);
}

.card-hover:hover::before {
  left: 100%;
}

/* Responsive typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

/* Utility classes for spacing */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-5 { margin: 1.25rem; }
.m-6 { margin: 1.5rem; }
.m-8 { margin: 2rem; }
.m-10 { margin: 2.5rem; }
.m-12 { margin: 3rem; }

.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; }
.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-8 { margin-left: 2rem; margin-right: 2rem; }
.mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; }
.mx-12 { margin-left: 3rem; margin-right: 3rem; }

.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-10 { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }

/* Override Bulma's dark background classes */
.has-background-dark {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%) !important;
  border-top: 1px solid var(--border-light) !important;
}

/* Hero styles for non-home pages */
body:not(.home-page) .hero {
  min-height: 40vh;
}

/* Contrast text color for hero sections on non-home pages */
body:not(.home-page) .hero-content .title,
body:not(.home-page) .hero-content .subtitle,
body:not(.home-page) .hero-content p {
  color: var(--text-dark);
}

/* Ensure hero overlay has good contrast on non-home pages */
body:not(.home-page) .hero-background-overlay {
  background: rgba(15, 23, 42, 0.12);
}

@media screen and (min-width: 1024px) {
  .navbar-start {
    justify-content: flex-end;
    margin-right: 0;
    margin-left: auto;
  }
  .navbar-end {
    margin-left: 0;
  }
}

.title:not(.is-spaced) + .subtitle {
  margin-top: 0.5rem;
}
/* Remove list markers from footer lists */
.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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