/* ReestructuraFinanzas - Style CSS */

/* ====================
   VARIABLES
==================== */
:root {
  /* Primary Colors */
  --primary-color: #2c6ba0;
  --primary-dark: #1a4971;
  --primary-light: #5090c8;
  
  /* Secondary Colors */
  --secondary-color: #45a878;
  --secondary-dark: #2e7a54;
  --secondary-light: #6ec69a;
  
  /* Accent Colors */
  --accent-color: #e16a36;
  --accent-dark: #b94e20;
  --accent-light: #f38b63;
  
  /* Neutrals */
  --text-dark: #2d3748;
  --text-medium: #4a5568;
  --text-light: #718096;
  --background-light: #f7fafc;
  --background-medium: #edf2f7;
  --background-dark: #e2e8f0;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  --gradient-hero: linear-gradient(135deg, rgba(44, 107, 160, 0.9), rgba(69, 168, 120, 0.85));
  --gradient-overlay: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans Pro', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Borders */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  
  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ====================
   RESET & GLOBAL STYLES
==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

p {
  margin-bottom: var(--space-md);
}

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

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: var(--gradient-primary);
  margin: var(--space-sm) auto 0;
  border-radius: var(--border-radius-sm);
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: var(--text-medium);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ====================
   BUTTONS
==================== */
.btn,
button,
input[type='submit'] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  outline: none;
  box-shadow: var(--shadow-md);
}

.btn:hover,
button:hover,
input[type='submit']:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn:active,
button:active,
input[type='submit']:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: white;
}

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

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
  color: white;
}

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

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
  color: white;
}

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

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

/* ====================
   HEADER & NAVIGATION
==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.header.scrolled {
  background-color: white;
  box-shadow: var(--shadow-lg);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.logo h1:hover {
  color: var(--primary-dark);
}

.desktop-nav ul {
  display: flex;
  gap: var(--space-md);
}

.desktop-nav a {
  color: var(--text-medium);
  font-weight: 600;
  transition: all var(--transition-fast);
  position: relative;
  padding: var(--space-xs) 0;
}

.desktop-nav a:hover {
  color: var(--primary-color);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-medium);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.mobile-menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-button span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: all var(--transition-fast);
}

.mobile-nav {
  display: none;
  background-color: white;
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* ====================
   HERO SECTION
==================== */
.hero {
  position: relative;
  padding: 7rem 0 5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl) 0;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

/* ====================
   SERVICES SECTION
==================== */
.services {
  padding: var(--space-xl) 0;
  background-color: var(--background-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

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

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

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

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

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

.card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

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

/* ====================
   SUCCESS STORIES SECTION
==================== */
.success-stories {
  padding: var(--space-xl) 0;
  background: linear-gradient(to right, rgba(44, 107, 160, 0.05), rgba(69, 168, 120, 0.05));
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  transition: transform var(--transition-slow);
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 0 var(--space-md);
}

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

.success-card .card-image {
  width: 100%;
  height: 300px;
}

.success-card .card-content {
  padding: var(--space-lg);
  text-align: center;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.carousel-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary-color);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.carousel-controls button:hover {
  background-color: var(--primary-color);
  color: white;
}

/* ====================
   STATISTICS SECTION
==================== */
.statistics {
  padding: var(--space-xl) 0;
  background-color: white;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.stat-card {
  background-color: var(--background-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.stat-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-md);
}

.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.stat-title {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.stat-description {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ====================
   EXTERNAL RESOURCES
==================== */
.external-resources {
  padding: var(--space-xl) 0;
  background: linear-gradient(to right, rgba(44, 107, 160, 0.05), rgba(69, 168, 120, 0.05));
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.resource-card {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

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

.resource-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

.resource-card p {
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-color);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.resource-link .arrow {
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.resource-link:hover {
  color: var(--secondary-dark);
}

.resource-link:hover .arrow {
  transform: translateX(4px);
}

/* ====================
   SUSTAINABILITY SECTION
==================== */
.sustainability {
  padding: var(--space-xl) 0;
  background-color: white;
}

.sustainability-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

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

.sustainability-content:hover .sustainability-image img {
  transform: scale(1.03);
}

.sustainability-text h3 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  color: var(--primary-color);
}

.sustainability-text p {
  margin-bottom: var(--space-md);
  color: var(--text-medium);
}

.sustainability-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.pillar {
  background-color: var(--background-light);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium);
}

.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pillar h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--secondary-color);
}

.pillar p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ====================
   EVENTS SECTION
==================== */
.events {
  padding: var(--space-xl) 0;
  background: linear-gradient(to right, rgba(44, 107, 160, 0.05), rgba(69, 168, 120, 0.05));
}

.events-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.event-card {
  display: flex;
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

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

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-md);
  text-align: center;
}

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

.event-date .month {
  font-size: 1.2rem;
  font-weight: 600;
}

.event-content {
  padding: var(--space-lg);
  flex-grow: 1;
}

.event-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

.event-details {
  display: flex;
  gap: var(--space-md);
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.event-description {
  margin-bottom: var(--space-lg);
  color: var(--text-medium);
}

/* ====================
   WORKSHOPS SECTION
==================== */
.workshops {
  padding: var(--space-xl) 0;
  background-color: white;
}

.workshops-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.workshops-wrapper {
  display: flex;
  transition: transform var(--transition-slow);
}

.workshop-slide {
  flex: 0 0 100%;
  padding: 0 var(--space-md);
}

.workshop-card {
  display: flex;
  flex-direction: column;
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  align-items: center;
}

.workshop-card .card-image {
  width: 100%;
  height: 300px;
}

.workshop-card .card-content {
  padding: var(--space-lg);
  text-align: center;
}

.workshop-details {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  color: var(--text-light);
  font-size: 0.9rem;
}

.workshop-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* ====================
   FAQ SECTION
==================== */
.faq {
  padding: var(--space-xl) 0;
  background: linear-gradient(to right, rgba(44, 107, 160, 0.05), rgba(69, 168, 120, 0.05));
}

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

.faq-item {
  background-color: white;
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--background-light);
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--primary-color);
}

html {
  overflow-x: hidden;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

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

/* ====================
   CONTACT SECTION
==================== */
.contact {
  padding: var(--space-xl) 0;
  background-color: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.info-card {
  background-color: var(--background-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-md);
}

.info-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

.contact-image {
  grid-column: span 2;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-lg);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  background-color: var(--background-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: var(--space-lg);
  color: var(--primary-color);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--background-dark);
  border-radius: var(--border-radius-md);
  background-color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(44, 107, 160, 0.1);
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.form-group.checkbox input {
  width: auto;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: normal;
}

/* ====================
   FOOTER
==================== */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo h2 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: var(--space-sm);
}

.footer-logo p {
  color: var(--background-medium);
  font-size: 1rem;
}

.footer h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: var(--space-lg);
  position: relative;
}

.footer h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background-color: var(--primary-light);
}

.footer-links ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a,
.footer-legal a {
  color: var(--background-medium);
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.social-links a {
  color: var(--background-medium);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: white;
}

.newsletter h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.newsletter-form {
  display: flex;
  gap: var(--space-xs);
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem;
  border: none;
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-form button {
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--background-medium);
  margin-bottom: 0;
}

/* ====================
   SUCCESS PAGE
==================== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-light);
  padding: var(--space-lg);
  text-align: center;
}

.success-content {
  max-width: 600px;
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-lg);
}

.success-content h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.success-content p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
}

/* ====================
   PRIVACY & TERMS PAGES
==================== */
.legal-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.legal-content h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content p {
  margin-bottom: var(--space-md);
  color: var(--text-medium);
}

.legal-content ul {
  list-style-type: disc;
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.legal-content ul li {
  margin-bottom: var(--space-sm);
  color: var(--text-medium);
}

/* ====================
   RESPONSIVE STYLES
==================== */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .sustainability-content {
    grid-template-columns: 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-button {
    display: flex;
  }
  
  .mobile-nav.active {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    padding: var(--space-sm) 0;
    flex-direction: row;
    justify-content: center;
    gap: var(--space-sm);
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    gap: var(--space-lg);
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .card-content,
  .success-card .card-content,
  .workshop-card .card-content {
    padding: var(--space-md);
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    border-radius: var(--border-radius-md);
  }
}

/* ====================
   ANIMATIONS
==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(44, 107, 160, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(44, 107, 160, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(44, 107, 160, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}