:root {
  /* Brand Colors */
  --primary-color: #111111;
  --secondary-color: #f8f9fa;
  --background-color: #ffffff;
  --footer-bg-color: #000000;
  --button-color: #000000;
  
  /* Neo-Brutalism Elements */
  --border-thick: 2px solid var(--primary-color);
  --border-radius-sharp: 0;
  --border-radius-soft: 4px;
  --shadow-offset: 4px 4px 0px var(--primary-color);
  --shadow-hover: 6px 6px 0px var(--primary-color);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing Scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Section Backgrounds */
  --section-bg-1: #ffffff;
  --section-bg-2: #f8f9fa;
  --section-bg-3: #ffffff;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--background-color);
  color: var(--primary-color);
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

/* Typography Enhancements */
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(--primary-color);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Neo-Brutalism Button Styles */
.btn-brutal {
  background-color: var(--button-color);
  color: white;
  border: var(--border-thick);
  border-radius: var(--border-radius-soft);
  padding: var(--spacing-sm) var(--spacing-lg);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-offset);
  cursor: pointer;
  text-align: center;
}

.btn-brutal:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow-hover);
  transform: translate(-2px, -2px);
}

.btn-brutal:active {
  box-shadow: 2px 2px 0px var(--primary-color);
  transform: translate(2px, 2px);
}

/* Bootstrap Button Enhancements */
.btn-primary {
  background-color: var(--primary-color);
  border: var(--border-thick);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-offset);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  border: var(--border-thick);
  box-shadow: var(--shadow-hover);
  transform: translate(-2px, -2px);
}

/* Custom Card Component */
.card-brutal {
  background-color: white;
  border: var(--border-thick);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-offset);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card-brutal:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-2px, -2px);
}

.card-brutal .card-header {
  background-color: var(--secondary-color);
  border-bottom: var(--border-thick);
  padding: var(--spacing-md);
  font-weight: 600;
  font-size: 1.2rem;
}

.card-brutal .card-body {
  padding: var(--spacing-lg);
}

.card-brutal .card-footer {
  background-color: var(--secondary-color);
  border-top: var(--border-thick);
  padding: var(--spacing-md);
}

/* Bootstrap Card Enhancements */
.card {
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-soft);
  box-shadow: 3px 3px 0px rgba(17, 17, 17, 0.1);
}

.card:hover {
  box-shadow: 5px 5px 0px rgba(17, 17, 17, 0.2);
}

/* Section Styling */
.section-light {
  background-color: var(--section-bg-1);
  padding: var(--spacing-xxl) 0;
}

.section-gray {
  background-color: var(--section-bg-2);
  padding: var(--spacing-xxl) 0;
}

.section-white {
  background-color: var(--section-bg-3);
  padding: var(--spacing-xxl) 0;
}

/* Header Styling */
.navbar {
  background-color: white;
  border-bottom: var(--border-thick);
  padding: var(--spacing-md) 0;
  box-shadow: 0 2px 0px var(--primary-color);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--primary-color) !important;
  font-weight: 500;
  padding: var(--spacing-sm) var(--spacing-md) !important;
  border-radius: var(--border-radius-soft);
  transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
  background-color: var(--secondary-color);
  transform: translate(-1px, -1px);
  box-shadow: 2px 2px 0px var(--primary-color);
}

/* Footer Styling */
footer {
  background-color: var(--footer-bg-color);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
  border-top: var(--border-thick);
}

footer h5 {
  color: white;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  font-size: 1.3rem;
}

footer a {
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
}

footer a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

footer .footer-bottom {
  border-top: 1px solid white;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  text-align: center;
  font-size: 0.9rem;
}

/* Form Styling */
.form-brutal {
  background-color: white;
  border: var(--border-thick);
  border-radius: var(--border-radius-soft);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-offset);
}

.form-control {
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-soft);
  padding: var(--spacing-sm);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-control:focus {
  border: 2px solid var(--primary-color);
  box-shadow: 3px 3px 0px rgba(17, 17, 17, 0.2);
  outline: none;
}

.form-label {
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--primary-color);
}

/* Alert Styling */
.alert-brutal {
  border: var(--border-thick);
  border-radius: var(--border-radius-soft);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-weight: 500;
}

.alert-success {
  background-color: #d4edda;
  border-color: var(--primary-color);
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: var(--primary-color);
  color: #721c24;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: var(--primary-color);
  color: #856404;
}

.alert-info {
  background-color: #d1ecf1;
  border-color: var(--primary-color);
  color: #0c5460;
}

/* Badge Styling */
.badge-brutal {
  background-color: var(--primary-color);
  color: white;
  border: var(--border-thick);
  border-radius: var(--border-radius-soft);
  padding: var(--spacing-xs) var(--spacing-sm);
  font-weight: 600;
  font-size: 0.8rem;
}

/* Table Styling */
.table-brutal {
  border: var(--border-thick);
  border-radius: var(--border-radius-soft);
  overflow: hidden;
  box-shadow: var(--shadow-offset);
}

.table-brutal th {
  background-color: var(--secondary-color);
  border-bottom: var(--border-thick);
  font-weight: 700;
  padding: var(--spacing-md);
  color: var(--primary-color);
}

.table-brutal td {
  border-bottom: 1px solid var(--primary-color);
  padding: var(--spacing-md);
}

.table-brutal tr:hover {
  background-color: var(--secondary-color);
}

/* Utility Classes */
.text-brutal {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.bg-brutal-light {
  background-color: var(--secondary-color);
}

.border-brutal {
  border: var(--border-thick) !important;
}

.shadow-brutal {
  box-shadow: var(--shadow-offset) !important;
}

.rounded-brutal {
  border-radius: var(--border-radius-soft) !important;
}

.p-brutal {
  padding: var(--spacing-lg) !important;
}

.m-brutal {
  margin: var(--spacing-md) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--section-bg-1) 0%, var(--section-bg-2) 100%);
  padding: var(--spacing-xxl) 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.hero-section p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl) auto;
}

/* Feature Cards */
.feature-card {
  background-color: white;
  border: var(--border-thick);
  border-radius: var(--border-radius-soft);
  padding: var(--spacing-lg);
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-offset);
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-3px, -3px);
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  border: var(--border-thick);
  border-radius: var(--border-radius-sharp);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .section-light,
  .section-gray,
  .section-white {
    padding: var(--spacing-xl) 0;
  }
  
  .card-brutal .card-body {
    padding: var(--spacing-md);
  }
  
  .form-brutal {
    padding: var(--spacing-md);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .btn-brutal {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
  }
  
  .feature-card {
    margin-bottom: var(--spacing-md);
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus States for Accessibility */
.btn-brutal:focus,
.form-control:focus,
.nav-link:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .navbar,
  footer,
  .btn-brutal {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .card-brutal,
  .feature-card {
    border: 1px solid black !important;
    box-shadow: none !important;
  }
}


/* Cookie Banner Additional Styles for Bootstrap */
.cookie-banner-custom {
    z-index: 1060;
    backdrop-filter: blur(10px);
}

.cookie-banner-custom .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}