/* ============================================= */
/* Preloader */
/* ============================================= */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader-logo {
  position: relative;
  margin-bottom: 2rem;
}

.preloader-pulse {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--gray-medium);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  70% { transform: scale(1.1); opacity: 0.3; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================= */
/* Navigation */
/* ============================================= */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.logo-mark {
  position: relative;
  margin-right: 0.75rem;
}

.logo-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,174,239,0.3) 0%, rgba(0,174,239,0) 70%);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}

.navbar-brand:hover .logo-glow {
  opacity: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-primary {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  font-family: var(--font-heading);
}

.logo-secondary {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: var(--dark);
  position: relative;
}

.navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
  transform: scaleX(1);
}

.btn-donate {
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-primary);
}

.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* ============================================= */
/* Hero Section */
/* ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.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;
  transition: transform 10s ease;
}

.hero:hover .hero-background {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--light);
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: var(--text-shadow-dark);
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  text-shadow: var(--text-shadow-dark);
}

.hero-actions .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.1rem;
}

.hero-actions .btn-outline-light {
  border-width: 2px;
}

.hero-actions .btn-outline-light:hover {
  color: var(--dark);
}

.hero-scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-down-link {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  color: var(--light);
  text-align: center;
  line-height: 50px;
  font-size: 1.25rem;
  transition: var(--transition);
  animation: bounce 2s infinite;
}

.scroll-down-link:hover {
  background-color: var(--primary);
  transform: translateY(5px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 8px;
  background-color: rgba(255,255,255,0.5);
  border: none;
  transition: var(--transition);
}

.carousel-indicators button.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  opacity: 0;
  transition: var(--transition);
}

.hero:hover .carousel-control-prev,
.hero:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
  background-size: 60%;
  transition: var(--transition);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--primary);
}

/* ============================================= */
/* Section Styling */
/* ============================================= */
.section-header {
  margin-bottom: 3rem;
  position: relative;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.section-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background-color: var(--primary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin: 1.5rem 0;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
}

/* ============================================= */
/* Mission Section */
/* ============================================= */
.mission-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.mission-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mission-image img {
  width: 100%;
  height: auto;
  transition: var(--transition-slow);
}

.mission-image:hover img {
  transform: scale(1.05);
}

.mission-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: var(--primary);
  color: var(--light);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-primary);
  z-index: 2;
}

.mission-badge i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.mission-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,174,239,0.3) 0%, rgba(0,174,239,0) 50%);
  opacity: 0;
  transition: var(--transition);
}

.mission-image:hover .mission-image-overlay {
  opacity: 1;
}

.mission-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.mission-text:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}

/* ============================================= */
/* Stats Section */
/* ============================================= */
.stats-section {
  padding: 4rem 0;
  background-color: var(--primary);
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.stats-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/pattern-dots.png') center/cover;
  opacity: 0.1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  position: relative;
  padding: 2rem;
  background-color: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(5px);
  transition: var(--transition);
  z-index: 2;
}

.stat-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255,255,255,0.2);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.stat-decoration {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  z-index: -1;
}

.stat-card:nth-child(1) .stat-decoration {
  top: -20px;
  right: -20px;
}

.stat-card:nth-child(2) .stat-decoration {
  bottom: -20px;
  left: -20px;
}

.stat-card:nth-child(3) .stat-decoration {
  top: -20px;
  left: -20px;
}

.stat-card:nth-child(4) .stat-decoration {
  bottom: -20px;
  right: -20px;
}

/* ============================================= */
/* Programs Section */
/* ============================================= */
.programs-section {
  padding: 6rem 0;
  background-color: var(--lighter);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.program-card {
  background-color: var(--light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.program-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: var(--shadow-primary);
}

.program-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.program-card:hover .program-image img {
  transform: scale(1.1);
}

.program-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
}

.program-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.program-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.program-text {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.program-features {
  list-style: none;
  margin-bottom: 2rem;
}

.program-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.program-features i {
  color: var(--primary);
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  transition: var(--transition);
}

.btn-link i {
  transition: var(--transition-fast);
}

.btn-link:hover {
  color: var(--primary-dark);
}

.btn-link:hover i {
  transform: translateX(5px);
}

/* ============================================= */
/* Stories Section */
/* ============================================= */
.stories-section {
  padding: 6rem 0;
  background-color: var(--light);
}

.stories-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.story-card {
  background-color: var(--light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.story-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.story-card:hover .story-image img {
  transform: scale(1.1);
}

.story-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
}

.story-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--primary);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.story-content {
  padding: 1.5rem;
}

.story-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.story-excerpt {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* ============================================= */
/* CTA Section */
/* ============================================= */
.cta-section {
  padding: 4rem 0;
  background-color: var(--primary);
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/pattern-dots.png') center/cover;
  opacity: 0.1;
}

.cta-card {
  background-color: var(--dark);
  padding: 3rem;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-card:before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
}

.cta-title {
  font-size: 2rem;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* ============================================= */
/* Newsletter Section */
/* ============================================= */
.newsletter-section {
  padding: 6rem 0;
  background-color: var(--lighter);
}

.newsletter-content {
  max-width: 500px;
}

.newsletter-form {
  margin-top: 2rem;
}

.newsletter-form .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.newsletter-form .form-control {
  height: 50px;
  border: none;
  padding: 0 1.5rem;
  font-size: 0.95rem;
}

.newsletter-form .btn {
  padding: 0 1.5rem;
  height: 50px;
  border-radius: 0 50px 50px 0;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  opacity: 0.7;
}

.contact-card {
  background-color: var(--light);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-method {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.contact-details p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ============================================= */
/* Footer */
/* ============================================= */
.footer {
  background-color: var(--darker);
  color: var(--light);
  padding: 4rem 0 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  margin-right: 0.75rem;
}

.footer-about-text {
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: var(--light);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--light);
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 0.75rem;
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 2rem 0;
}

.footer-bottom {
  padding: 1.5rem 0;
}

.copyright-text {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--primary);
}

/* ============================================= */
/* Cookie Consent */
/* ============================================= */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 500px;
  background-color: var(--dark);
  color: var(--light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 9998;
  transform: translateY(150%);
  transition: var(--transition-slow);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content p {
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

/* ============================================= */
/* Back to Top */
/* ============================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-primary);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* ============================================= */
/* Responsive Styles */
/* ============================================= */
@media (max-width: 1199.98px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }
  
  .hero-title { font-size: 3rem; }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }
  
  .hero {
    min-height: 600px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-text {
    font-size: 1.1rem;
  }
  
  .mission-section {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .hero {
    min-height: 500px;
    height: auto;
    padding: 8rem 0 6rem;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-actions .btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-section .row {
    flex-direction: column-reverse;
  }
  
  .newsletter-content {
    margin-top: 3rem;
  }
  
  .footer-logo {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-logo img {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  
  .hero {
    padding: 7rem 0 4rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-card {
    padding: 2rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-actions .btn {
    width: 100%;
  }
  
  .cookie-consent {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}


:root {
  --primary: #00AEEF;
  --primary-light: rgba(0, 174, 239, 0.1);
  --primary-dark: #0088C6;
  --secondary: #FF6B6B;
  --dark: #2C3E50;
  --darker: #1A252F;
  --light: #FFFFFF;
  --lighter: #F8F9FA;
  --gray-light: #E9ECEF;
  --gray-medium: #6C757D;
  --gray-dark: #343A40;
  --text-primary: #212529;
  --text-secondary: #495057;
  --text-light: #E9ECEF;
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-round: 50px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.25);
  --shadow-primary: 0 4px 16px rgba(0, 174, 239, 0.3);
  
  --text-shadow-dark: 0 2px 4px rgba(0, 0, 0, 0.3);
  
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light);
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
