:root {
  /* Primary Colors */
  --primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --primary-solid: #667eea;
  --primary-dark: #4c63d2;
  --secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --secondary-solid: #f093fb;
  --secondary-dark: #e67bb8;
  
  /* Accent Colors */
  --accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --accent-solid: #4facfe;
  --accent-dark: #3b8bce;
  
  /* Energy Colors */
  --energy: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  --energy-solid: #fcb69f;
  --energy-dark: #e5956b;
  
  /* Neutral Colors */
  --dark: #1a1a1a;
  --dark-light: #2d2d2d;
  --light: #ffffff;
  --light-dark: #f8f9fa;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  
  /* Success & Status */
  --success: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
  --success-solid: #56ab2f;
  --warning: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
  --warning-solid: #f7971e;
  --danger: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
  --danger-solid: #ee0979;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans Pro', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;
  
  /* Border Radius */
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
  --shadow-energy: 0 8px 32px rgba(252, 182, 159, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease-out;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-backdrop: blur(10px);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

/* Global Button Styles */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.btn-primary {
  background: var(--primary);
  color: var(--light);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--light);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--light);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--light);
}

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

.btn-outline-light:hover {
  background: var(--light);
  color: var(--dark);
  transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.morph-btn {
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-bounce);
}

.morph-btn:hover {
  border-radius: var(--border-radius-xl);
  transform: scale(1.05) translateY(-2px);
}

/* Header Styles */
.header {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--glass-border);
  padding: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand h3 {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  font-weight: 700;
}

.nav-link {
  color: var(--light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius);
  transition: all var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--accent-solid) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(26,26,26,0.5) 100%);
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleMorph 3s ease-in-out infinite alternate;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  opacity: 0.9;
  line-height: 1.6;
  color: var(--light);
}

.hero-buttons {
  gap: var(--spacing-md);
}

@keyframes titleMorph {
  0% { transform: scale(1) skew(0deg); }
  50% { transform: scale(1.02) skew(1deg); }
  100% { transform: scale(1) skew(0deg); }
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

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

.lead {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray);
  text-align: center;
}

/* Card Styles */
.card {
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  overflow: hidden;
  background: var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-lg);
}

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-smooth);
}

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

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

.card-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
}

.card-text {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

/* Portfolio Section */
.portfolio-section {
  background: var(--light-dark);
}

.portfolio-card {
  height: 100%;
  transition: all var(--transition-smooth);
}

.portfolio-card .card-image {
  position: relative;
  overflow: hidden;
}

.portfolio-card .card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.portfolio-card:hover .card-image::after {
  opacity: 0.1;
}

.investment-stats {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.85rem;
}

.bg-success {
  background: var(--success-solid) !important;
}

.bg-info {
  background: var(--accent-solid) !important;
}

/* History Section */
.history-section {
  background: var(--light);
  position: relative;
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--primary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 2rem 0;
  position: relative;
  width: 50%;
  animation: fadeInUp 0.6s ease-out;
}

.timeline-item::after {
  content: attr(data-year);
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border: 4px solid var(--light);
  top: 2rem;
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--light);
  font-size: 0.9rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 3rem;
}

.timeline-item:nth-child(odd)::after {
  right: -42px;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
}

.timeline-item:nth-child(even)::after {
  left: -42px;
}

.timeline-content {
  background: var(--light);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.timeline-content:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.timeline-content h4 {
  color: var(--primary-solid);
  margin-bottom: var(--spacing-sm);
}

/* Research Section */
.research-section {
  background: var(--light);
}

.research-card {
  background: var(--light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.research-card:hover {
  transform: translateY(-6px) skew(1deg);
  box-shadow: var(--shadow-lg);
}

.research-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.research-icon img {
  border-radius: var(--border-radius);
  margin: 0 auto;
}

.research-card h4 {
  color: var(--primary-solid);
  margin-bottom: var(--spacing-sm);
}

/* Sustainability Section */
.sustainability-section {
  background: var(--light-dark);
}

.sustainability-accordion .accordion-item {
  border: none;
  margin-bottom: var(--spacing-sm);
  border-radius: var(--border-radius-lg) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  background: var(--light);
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-lg) !important;
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--light);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: var(--spacing-md);
  background: var(--light);
}

/* Success Stories Section */
.success-section {
  background: var(--light);
}

.success-card {
  background: var(--light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-energy);
}

.success-card .card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto var(--spacing-md) auto;
  height: auto;
}

.success-card img {
  border: 4px solid var(--light);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

.success-metrics {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: var(--spacing-sm);
}

/* Partners Section */
.partners-section {
  background: var(--light);
}

.partner-card {
  background: var(--light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

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

.partner-card img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  filter: grayscale(100%);
  transition: all var(--transition-smooth);
}

.partner-card:hover img {
  filter: grayscale(0%);
}

/* Clientele Section */
.clientele-section {
  background: var(--light-dark);
}

.client-stat {
  background: var(--light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.client-stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* Awards Section */
.awards-section {
  background: var(--light);
}

.award-card {
  background: var(--light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.award-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}

.award-card img {
  margin: 0 auto var(--spacing-md) auto;
  border-radius: var(--border-radius);
}

/* Resources Section */
.resources-section {
  background: var(--light-dark);
}

.resource-card {
  background: var(--light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.resource-card h5 a {
  color: var(--primary-solid);
  text-decoration: none;
  font-weight: 600;
}

.resource-card h5 a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  background: var(--light-dark);
}

.contact-form-wrapper {
  background: var(--light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info {
  background: var(--dark);
  color: var(--light);
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0.1;
  z-index: 1;
}

.contact-info > * {
  position: relative;
  z-index: 2;
}

.contact-item h6 {
  color: var(--accent-solid);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-image img {
  border-radius: var(--border-radius);
  width: 100%;
  height: auto;
}

.form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-control, .form-select {
  border: 2px solid var(--gray-light);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-solid);
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Footer */
.footer {
  background: var(--dark) !important;
  color: var(--light);
}

.footer h5, .footer h6 {
  color: var(--accent-solid);
  margin-bottom: var(--spacing-sm);
}

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

.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: all var(--transition-smooth);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-solid);
  transform: translateX(4px);
}

.social-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-smooth);
  display: inline-block;
}

.social-links a:hover {
  color: var(--accent-solid);
  background: rgba(79, 172, 254, 0.1);
  transform: translateY(-2px);
}

/* Investment Modal */
.modal-content {
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  border-bottom: 1px solid var(--gray-light);
  background: var(--primary);
  color: var(--light);
}

.investment-option {
  transition: all var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.investment-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.investment-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-solid);
  margin: var(--spacing-sm) 0;
}

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

.success-content {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--spacing-xl);
}

.success-icon {
  width: 120px;
  height: 120px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg) auto;
  color: var(--success-solid);
  font-size: 3rem;
  animation: successPulse 2s ease-in-out infinite;
}

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

/* Privacy and Terms Pages */
.privacy-page, .terms-page {
  padding-top: 120px;
  min-height: 100vh;
  background: var(--light-dark);
}

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--light);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.privacy-content h1, .terms-content h1 {
  color: var(--primary-solid);
  margin-bottom: var(--spacing-lg);
}

.privacy-content h2, .terms-content h2 {
  color: var(--dark);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

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

@keyframes morphFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .timeline-container::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    text-align: left;
  }
  
  .timeline-item:nth-child(odd) {
    left: 0;
    text-align: left;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
    padding-left: 70px;
  }
  
  .timeline-item::after {
    left: 12px;
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
  }
  
  .timeline-item:nth-child(odd)::after,
  .timeline-item:nth-child(even)::after {
    left: 12px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 80%;
    max-width: 300px;
  }
  
  section {
    padding: var(--spacing-lg) 0;
  }
  
  .contact-info {
    margin-top: var(--spacing-lg);
  }
}

@media (max-width: 576px) {
  .navbar-brand h3 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .investment-amount {
    font-size: 1.5rem;
  }
}

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

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

.curved-section {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.energy-glow {
  box-shadow: var(--shadow-energy);
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
  .card, .research-card, .success-card, .partner-card, .client-stat, .award-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
  }
  
  .card:nth-child(1) { animation-delay: 0.1s; }
  .card:nth-child(2) { animation-delay: 0.2s; }
  .card:nth-child(3) { animation-delay: 0.3s; }
  .card:nth-child(4) { animation-delay: 0.4s; }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  }
  
  .btn {
    border: 2px solid currentColor;
  }
  
  .card {
    border: 1px solid var(--gray);
  }
}

/* Print Styles */
@media print {
  .header, .footer, .btn, .modal {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  section {
    page-break-inside: avoid;
    margin: 1rem 0;
  }
}