:root {
  /* Primary Colors */
  --primary-color: #3a7bd5;
  --primary-light: #6f9ff0;
  --primary-dark: #1a5cb8;
  
  /* Secondary Colors */
  --secondary-color: #f83a3a;
  --secondary-light: #ff6868;
  --secondary-dark: #d02020;
  
  /* Accent Colors */
  --accent-color: #00e6a1;
  --accent-light: #4affc3;
  --accent-dark: #00b37d;
  
  /* Neutral Colors */
  --neutral-100: #ffffff;
  --neutral-200: #f5f5f5;
  --neutral-300: #e0e0e0;
  --neutral-400: #bdbdbd;
  --neutral-500: #9e9e9e;
  --neutral-600: #757575;
  --neutral-700: #616161;
  --neutral-800: #424242;
  --neutral-900: #212121;
  
  /* Shadows for Neomorphism */
  --shadow-light: 8px 8px 16px rgba(163, 177, 198, 0.15),
                  -8px -8px 16px rgba(255, 255, 255, 0.9);
  --shadow-inset: inset 4px 4px 8px rgba(163, 177, 198, 0.15),
                  inset -4px -4px 8px rgba(255, 255, 255, 0.9);
  
  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  
  /* Animation */
  --transition-fast: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-normal: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-slow: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-xxxl: 64px;
  
  /* Container max width */
  --container-max-width: 1200px;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  line-height: 1.6;
  background-color: var(--neutral-200);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--neutral-900);
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--neutral-700);
}

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

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

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

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

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-md);
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-header .subtitle {
  color: var(--neutral-600);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto var(--spacing-md);
}

/* Buttons */
.btn, button:not(.navbar-toggler), input[type="submit"] {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: var(--border-radius-md);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-light);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover, button:hover:not(.navbar-toggler), input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:active, button:active:not(.navbar-toggler), input[type="submit"]:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-inset);
}

.btn-primary, input[type="submit"] {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: white;
}

.btn-primary:hover, input[type="submit"]:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  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;
}

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

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

.btn-register {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
  color: var(--neutral-900);
  font-weight: 600;
}

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

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  font-weight: 600;
  padding: 15px 30px;
}

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

.btn-subscribe {
  background: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
}

.btn-subscribe:hover {
  background: var(--secondary-dark);
}

/* Header */
.header {
  background: var(--neutral-100);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand h1 {
  margin: 0;
  font-size: 1.75rem;
  color: var(--primary-color);
  font-weight: 700;
}

.navbar-nav {
  display: flex;
  gap: var(--spacing-md);
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--neutral-800);
  font-weight: 500;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link:focus {
  color: var(--primary-color);
  background-color: rgba(58, 123, 213, 0.05);
  transform: translateY(-2px);
}

.navbar-toggler {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin-top: 80px; /* Adjust based on header height */
}

.hero-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--spacing-xl);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-lg);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s var(--transition-normal);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s var(--transition-normal) 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  animation: fadeInUp 1s var(--transition-normal) 0.5s both;
}

/* Vision Section */
.vision-section {
  background-color: var(--neutral-100);
}

.vision-content {
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  background-color: var(--neutral-100);
  margin-bottom: var(--spacing-lg);
}

.vision-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

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

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

/* History Section */
.history-section {
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-100));
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto var(--spacing-xxl);
}

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

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
  margin-bottom: var(--spacing-lg);
}

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

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

.timeline-dot {
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12.5px;
  background-color: var(--primary-color);
  border: 4px solid var(--neutral-100);
  border-radius: 50%;
  z-index: 1;
  box-shadow: var(--shadow-light);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -12.5px;
}

.timeline-content {
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-normal);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.history-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-xl);
}

.history-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  max-width: 100%;
  height: auto;
}

/* Webinars Section */
.webinars-section {
  background-color: var(--neutral-100);
}

.webinar-carousel {
  max-width: 900px;
  margin: 0 auto;
}

.carousel-item .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  margin: 0 auto;
  max-width: 800px;
  background-color: var(--neutral-100);
}

.carousel-item .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

.carousel-item .card-content {
  padding: var(--spacing-xl);
  text-align: center;
}

.carousel-item .card-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.carousel-item .card-content .date {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
}

.carousel-control-prev, .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--neutral-100);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: var(--shadow-light);
  opacity: 0.9;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
  background-color: var(--primary-color);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  filter: invert(1);
}

/* Resources Section */
.resources-section {
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-100));
}

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  background-color: var(--neutral-100);
  transition: transform var(--transition-normal);
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.resource-card .card-content {
  padding: var(--spacing-xl);
  text-align: center;
}

.resource-card .card-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.resource-link {
  display: inline-block;
  margin-top: var(--spacing-md);
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 2px;
}

.resource-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.resource-link:hover::after {
  width: 100%;
}

/* Innovation Section */
.innovation-section {
  background-color: var(--neutral-100);
}

.innovation-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  margin-bottom: var(--spacing-lg);
}

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

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

.accordion {
  box-shadow: var(--shadow-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.accordion-item {
  background-color: var(--neutral-100);
  border: none;
  margin-bottom: 2px;
}

.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--neutral-800);
  background-color: var(--neutral-100);
  padding: var(--spacing-lg);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: rgba(58, 123, 213, 0.05);
}

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

.accordion-body {
  padding: var(--spacing-lg);
}

/* Partners Section */
.partners-section {
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-100));
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-normal);
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.partner-card .card-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

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

.contact-info {
  padding: var(--spacing-xl);
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-lg);
  height: 100%;
}

.contact-info .section-header {
  text-align: left;
  margin-bottom: var(--spacing-lg);
}

.contact-info .section-header h2 {
  color: white;
}

.contact-info .section-header h2::after {
  left: 0;
  transform: none;
  background: white;
}

.contact-info .subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
}

.contact-details {
  margin-top: var(--spacing-xl);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.contact-item .icon {
  margin-right: var(--spacing-md);
  font-size: 1.5rem;
}

.contact-form-container {
  background-color: var(--neutral-100);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.contact-form .form-group {
  margin-bottom: var(--spacing-lg);
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: var(--spacing-sm);
}

.contact-form .form-control {
  width: 100%;
  padding: 12px var(--spacing-md);
  font-size: 1rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-sm);
  background-color: var(--neutral-100);
  transition: all var(--transition-fast);
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.1);
}

/* Footer */
.footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

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

.footer p {
  color: var(--neutral-400);
}

.footer-about {
  margin-bottom: var(--spacing-xl);
}

.footer-about .address, .footer-about .phone {
  margin-top: var(--spacing-sm);
  color: var(--neutral-400);
}

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

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--neutral-400);
  transition: color var(--transition-fast);
  display: inline-block;
  padding: var(--spacing-xs) 0;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

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

.footer-social .social-links a {
  color: var(--neutral-400);
  transition: color var(--transition-fast);
  font-weight: 600;
}

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

.newsletter h4 {
  color: white;
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 10px var(--spacing-md);
  border: 1px solid var(--neutral-700);
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  background-color: var(--neutral-700);
  color: white;
}

.newsletter-form input::placeholder {
  color: var(--neutral-500);
}

.newsletter-form .btn-subscribe {
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  padding: 10px var(--spacing-md);
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

.newsletter-form .btn-subscribe:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--neutral-700);
  margin-top: var(--spacing-xl);
}

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

.success-content {
  max-width: 600px;
  padding: var(--spacing-xxl);
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.success-icon {
  font-size: 5rem;
  color: var(--accent-color);
  margin-bottom: var(--spacing-xl);
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.success-content p {
  margin-bottom: var(--spacing-xl);
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px; /* Space for fixed header */
}

.privacy-content, .terms-content {
  background-color: var(--neutral-100);
  padding: var(--spacing-xxl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

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

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Media Queries */
@media (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .navbar-toggler {
    display: block;
  }
  
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: var(--spacing-lg);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
  }
  
  .navbar-collapse.show {
    max-height: 500px;
  }
  
  .navbar-nav {
    flex-direction: column;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
    text-align: left;
  }
  
  .timeline-item:nth-child(odd) {
    text-align: left;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-dot {
    left: 15px !important;
    right: auto !important;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-sm);
  }
  
  .newsletter-form .btn-subscribe {
    border-radius: var(--border-radius-sm);
  }
}

@media (max-width: 767px) {
  section {
    padding: var(--spacing-xl) 0;
  }
  
  .section-header {
    margin-bottom: var(--spacing-xl);
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .footer [class^="col-"] {
    margin-bottom: var(--spacing-xl);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .btn, button, input[type="submit"] {
    padding: 10px 25px;
  }
}

html,body{
  overflow-x: hidden;
}