/* =========================================================================
   CSS VARIABLES - ROOT THEME CONFIGURATION
   ========================================================================= */

:root {
  /* Font Variables */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Primary Gradient Colors */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  
  /* Solid Colors */
  --primary-color: #667eea;
  --primary-dark: #5a6fd8;
  --secondary-color: #f093fb;
  --accent-color: #4facfe;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #6c757d;
  --darker-gray: #495057;
  --black: #000000;
  --text-dark: #222222;
  --text-medium: #333333;
  --text-light: #666666;
  
  /* Background Gradients */
  --bg-gradient-light: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  --bg-gradient-dark: linear-gradient(135deg, #232526 0%, #414345 100%);
  --bg-overlay: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 15px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 25px rgba(0,0,0,0.2);
  --shadow-xl: 0 16px 40px rgba(0,0,0,0.25);
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================================
   GLOBAL STYLES
   ========================================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.75rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
  font-size: 1rem;
}

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

a:hover {
  color: var(--primary-dark);
  transform: translateY(-1px);
}
img{
  opacity: 1!important;
}
/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

/* =========================================================================
   BUTTON STYLES - GLOBAL
   ========================================================================= */

.btn {
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::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-smooth);
  z-index: -1;
}

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

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

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

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

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

.btn-outline-primary:hover {
  background: var(--primary-gradient);
  color: var(--white);
  transform: translateY(-3px);
}

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

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

.btn-gradient {
  background: var(--accent-gradient);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* =========================================================================
   FORM STYLES
   ========================================================================= */

.form-control, .form-select {
  padding: 12px 16px;
  border: 2px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--white);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* =========================================================================
   HEADER STYLES
   ========================================================================= */

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark) !important;
}

.logo-icon {
  font-size: 2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 0.5rem;
  position: relative;
}

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

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

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* =========================================================================
   HERO SECTION STYLES
   ========================================================================= */

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--white) !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-buttons {
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-form-container {
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-title {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* =========================================================================
   SECTION STYLES
   ========================================================================= */

section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.bg-light {
  background: var(--bg-gradient-light) !important;
}

/* =========================================================================
   CARD STYLES
   ========================================================================= */

.card {
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* =========================================================================
   VISION SECTION
   ========================================================================= */

.vision-content h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.feature-item {
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: 50%;
  flex-shrink: 0;
}

.vision-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* =========================================================================
   INNOVATION SECTION
   ========================================================================= */

.innovation-card {
  height: 100%;
  transition: var(--transition-smooth);
  border: 1px solid var(--medium-gray);
}

.innovation-card:hover {
  border-color: var(--primary-color);
}

.innovation-card .card-image {
  height: 250px;
}

.innovation-card .card-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* =========================================================================
   INSTRUCTORS SECTION
   ========================================================================= */

.instructor-card {
  height: 100%;
  border: 1px solid var(--medium-gray);
}

.instructor-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-color);
}

.instructor-name {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.instructor-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.instructor-bio {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  text-align: left;
}

.instructor-achievements .badge {
  margin-bottom: 0.5rem;
}

/* =========================================================================
   PROJECTS SECTION
   ========================================================================= */

.project-card {
  height: 100%;
  border: 1px solid var(--medium-gray);
}

.project-card .card-image {
  height: 300px;
}

.project-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.project-description {
  color: var(--text-medium);
  margin-bottom: 2rem;
  text-align: left;
}

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

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* =========================================================================
   AWARDS SECTION
   ========================================================================= */

.award-card {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  height: 100%;
}

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

.award-icon {
  font-size: 3rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.award-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.award-description {
  color: var(--text-medium);
}

/* =========================================================================
   PRICING SECTION
   ========================================================================= */

.pricing-card {
  height: 100%;
  border: 2px solid var(--medium-gray);
  transition: var(--transition-smooth);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  position: relative;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-period {
  color: var(--text-light);
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-medium);
  border-bottom: 1px solid var(--medium-gray);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* =========================================================================
   EVENTS SECTION
   ========================================================================= */

.event-card {
  border: 1px solid var(--medium-gray);
  transition: var(--transition-smooth);
}

.event-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.event-date {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.event-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.event-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  text-align: left;
}

.event-details .badge {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* =========================================================================
   INSIGHTS SECTION
   ========================================================================= */

.insight-card {
  height: 100%;
  border: 1px solid var(--medium-gray);
  transition: var(--transition-smooth);
}

.insight-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.insight-card .card-image {
  height: 200px;
}

.insight-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.insight-text {
  color: var(--text-medium);
  margin-bottom: 1rem;
  text-align: left;
}

.insight-meta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--medium-gray);
}

/* =========================================================================
   RESOURCES SECTION
   ========================================================================= */

.resource-card {
  height: 100%;
  border: 1px solid var(--medium-gray);
  transition: var(--transition-smooth);
}

.resource-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.resource-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.resource-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

/* =========================================================================
   CONTACT SECTION
   ========================================================================= */

.contact-form-container {
  position: relative;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--medium-gray);
}

.contact-info {
  padding: 2rem;
}

.contact-item {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
}

.contact-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-details {
  color: var(--text-medium);
  margin: 0;
}

/* =========================================================================
   FOOTER STYLES
   ========================================================================= */

.footer {
  background: var(--dark-gradient);
  color: var(--white);
  margin-top: 5rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo-icon {
  font-size: 2rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-text {
  color: var(--white);
  margin: 0;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.footer-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-note {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-style: italic;
}

/* =========================================================================
   ANIMATIONS
   ========================================================================= */

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

/* =========================================================================
   SUCCESS PAGE STYLES
   ========================================================================= */

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gradient-light);
  padding: 2rem;
}

.success-content {
  text-align: center;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  width: 100%;
}

.success-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

.success-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.success-message {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

/* =========================================================================
   PRIVACY & TERMS PAGES
   ========================================================================= */

.content-page {
  padding-top: 100px;
  padding-bottom: 3rem;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.content-title {
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.content-section {
  margin-bottom: 2rem;
}

.content-section h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.content-section p {
  color: var(--text-medium);
  margin-bottom: 1rem;
  text-align: justify;
}

.content-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.content-section li {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pricing-card.featured {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .project-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }
  
  .instructor-bio,
  .project-description,
  .event-description,
  .insight-text {
    text-align: center;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .feature-icon {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-form {
    margin-top: 2rem;
  }
  
  .contact-info {
    padding: 1rem;
  }
  
  .success-content {
    padding: 2rem;
  }
  
  .instructor-img {
    width: 120px;
    height: 120px;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
}

/* =========================================================================
   UTILITY CLASSES
   ========================================================================= */

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

.bg-gradient-primary {
  background: var(--primary-gradient);
}

.bg-gradient-secondary {
  background: var(--secondary-gradient);
}

.bg-gradient-accent {
  background: var(--accent-gradient);
}

.shadow-custom {
  box-shadow: var(--shadow-lg);
}

.border-gradient {
  border: 2px solid;
  border-image: var(--primary-gradient) 1;
}

.rounded-custom {
  border-radius: var(--border-radius-lg);
}

.transition-smooth {
  transition: var(--transition-smooth);
}

/* Scroll Reveal Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   COOKIE POPUP STYLES
   ========================================================================= */

.cookie-popup {
  font-family: var(--font-body);
  background: rgba(0, 0, 0, 0.95) !important;
  color: var(--white) !important;
  backdrop-filter: blur(10px);
}

.cookie-popup p {
  color: var(--white) !important;
  margin-bottom: 0;
}

.cookie-popup .btn-primary {
  background: var(--primary-gradient);
  border: none;
  padding: 8px 20px;
  border-radius: var(--border-radius);
  font-weight: 500;
}

.cookie-popup .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}