:root {
  /* Primary colors */
  --primary-color: #0055ff;
  --primary-dark: #0044cc;
  --primary-light: #4d8bff;
  
  /* Secondary colors */
  --secondary-color: #00e5ff;
  --secondary-dark: #00b3cc;
  --secondary-light: #4df0ff;
  
  /* Accent colors */
  --accent-color: #7700ff;
  --accent-dark: #5c00cc;
  --accent-light: #a64dff;
  
  /* Neutral colors */
  --dark-color: #0a1933;
  --dark-light: #1e3a6a;
  --light-color: #f5f9ff;
  --light-dark: #dce6f2;
  
  /* Text colors */
  --text-dark: #1a1a2e;
  --text-medium: #4a4a6a;
  --text-light: #f0f0f5;
  
  /* Gradient colors */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  --gradient-dark: linear-gradient(135deg, var(--dark-color), var(--dark-light));
  
  /* Shadow */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Border radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Font sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

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

img {
  max-width: 100%;
  height: auto;
}

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

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

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: var(--font-size-3xl);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 0;
}

/* Animation Utilities */
.animate-on-scroll {
  /*opacity: 0;*/
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  position: relative;
  overflow: hidden;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  z-index: 1;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: width var(--transition-normal);
  z-index: -1;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 85, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 85, 255, 0.4);
  transform: translateY(-2px);
  color: white;
}

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

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

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

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}

.btn-block {
  width: 100%;
  display: block;
}

/* Header */
.header {
  transition: all var(--transition-normal);
  padding: 1rem 0;
  z-index: 1000;
}

.header.scrolled {
  background-color: var(--dark-color);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: color var(--transition-normal);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
  color: white;
}

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

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

.hero-content h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: var(--font-size-xl);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  /*opacity: 0;*/
}

.hero-content .btn-group {
  animation: fadeInUp 1s ease-out 0.6s forwards;
  /*opacity: 0;*/
}

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

/* Methodology Section */
.methodology-section {
  background-color: var(--light-color);
}

.methodology-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-align: center;
}

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

.card-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-icon img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.methodology-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: var(--font-size-xl);
}

.methodology-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.methodology-timeline {
  position: relative;
  padding: 3rem 0;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--gradient-primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 0 4px var(--light-color);
}

.timeline-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

/* Insights Section */
.insights-section {
  color: var(--text-light);
}

.insight-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.card-image {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
}

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

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

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: var(--font-size-xl);
}

.card-content p {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
  flex-grow: 1;
}

.insight-highlight {
  background: var(--gradient-primary);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.insight-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(rgba(255, 255, 255, 0.1), transparent 70%);
  z-index: -1;
  animation: pulse 10s infinite linear;
}

@keyframes pulse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

.award-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.award-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-icon img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.award-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: var(--font-size-xl);
}

.award-card p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.award-year {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
}

/* Workshops Section */
.workshops-section {
  color: var(--text-light);
}

.workshop-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.workshop-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.workshop-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--light-dark);
  border-bottom: 1px solid var(--light-dark);
  padding: 1rem 0;
}

.detail {
  flex: 1;
}

.workshop-calendar {
  background: rgba(0, 0, 0, 0.3);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-grid {
  display: grid;
  gap: 1.5rem;
}

.calendar-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  transition: background-color var(--transition-normal);
}

.calendar-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.calendar-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background: var(--gradient-accent);
  border-radius: var(--border-radius-md);
  margin-right: 1.5rem;
  box-shadow: var(--shadow-md);
}

.calendar-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.calendar-date .month {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
}

.calendar-content h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.calendar-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

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

.history-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.history-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

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

.history-timeline {
  position: relative;
  padding-left: 2rem;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--gradient-primary);
}

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

.sustainability-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
  text-align: center;
}

.sustainability-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.sustainability-card .card-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sustainability-card .card-icon img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.sustainability-card h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: var(--font-size-xl);
}

.sustainability-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.sustainability-highlight {
  background: rgba(0, 0, 0, 0.3);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.resource-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-align: center;
}

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

.resource-card .card-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.resource-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: var(--font-size-xl);
}

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

.resource-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

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

.resource-links li a {
  display: block;
  padding: 0.75rem 1rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius-md);
  color: var(--primary-color);
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

.resource-links li a:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Pricing Section */
.pricing-section {
  color: var(--text-light);
}

.pricing-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  font-weight: 700;
  font-size: var(--font-size-sm);
  z-index: 1;
}

.pricing-card .card-header {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  text-align: center;
}

.pricing-card .card-header h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: var(--font-size-2xl);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.currency {
  font-size: 1.5rem;
  margin-right: 0.25rem;
}

.period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  align-self: flex-end;
  margin-left: 0.25rem;
}

.pricing-card .card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.features-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-dark);
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-medium);
}

.features-list li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0.75rem;
}

.description {
  margin-bottom: 2rem;
  color: var(--text-medium);
  flex-grow: 1;
}

.pricing-note {
  background: rgba(0, 0, 0, 0.3);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-info {
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  margin-bottom: 2rem;
}

.info-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1.5rem;
  font-size: 1.5rem;
}

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

.info-content p {
  margin-bottom: 0;
  color: var(--text-medium);
}

.contact-map {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.contact-form-container {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-form-container h3 {
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--light-dark);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 85, 255, 0.1);
}

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

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

.footer-top {
  padding: 5rem 0 3rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
}

.social-links a {
  color: white;
  margin-right: 1rem;
  display: inline-block;
  width: auto;
  height: auto;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  transition: background-color var(--transition-normal);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-normal);
}

.footer-links ul li a:hover {
  color: white;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-newsletter form {
  position: relative;
}

.footer-newsletter input {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius-md);
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-newsletter input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-newsletter button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 1.25rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.footer-newsletter button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom .copyright {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .credits {
  color: rgba(255, 255, 255, 0.5);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  /*opacity: 0;*/
  visibility: hidden;
  transition: all var(--transition-normal);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gradient-accent);
  transform: translateY(-5px);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.success-content h2 {
  margin-bottom: 1.5rem;
  font-size: var(--font-size-2xl);
}

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

/* Privacy and Terms Pages */
.content-page {
  padding-top: 120px;
  padding-bottom: 4rem;
}

.content-wrapper {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.content-wrapper h1 {
  margin-bottom: 2rem;
}

.content-wrapper h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: var(--font-size-xl);
}

.content-wrapper p {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

/* Media Queries */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
  }
  
  .footer-top {
    padding: 3rem 0 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
  
  .footer-newsletter button {
    position: relative;
    width: 100%;
    margin-top: 1rem;
    border-radius: var(--border-radius-md);
  }
}