:root {
  /* Primary Colors - Split Complementary Scheme */
  --primary: #1e6b8c;
  --primary-dark: #0e455c;
  --primary-light: #3d9ac0;
  --secondary: #d94e4e;
  --secondary-dark: #a92c2c;
  --secondary-light: #ff7878;
  --accent: #eab308;
  --accent-dark: #c99700;
  --accent-light: #fcd34d;
  
  /* Neutral Colors */
  --dark: #222831;
  --dark-medium: #393e46;
  --medium: #555a64;
  --light-medium: #878c98;
  --light: #eeeeee;
  --white: #ffffff;
  
  /* Background Colors */
  --bg-primary: #f9f9f9;
  --bg-secondary: #f2f2f2;
  --bg-tertiary: #e8e8e8;
  --bg-accent: rgba(30, 107, 140, 0.05);
  
  /* Text Colors */
  --text-primary: #333333;
  --text-secondary: #555555;
  --text-light: #888888;
  --text-white: #ffffff;
  
  /* 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.1);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-xxl: 8rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  
  /* Container Width */
  --container-width: 1200px;
  --container-padding: 2rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

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

ul {
  list-style: none;
}

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

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

/* Section Styles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: var(--dark);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  margin: 1rem auto 0;
  border-radius: var(--radius-full);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  text-decoration: none;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 107, 140, 0.3);
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-tertiary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

button, input[type="submit"] {
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-desktop {
  display: flex;
}

.nav-desktop ul {
  display: flex;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-medium);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 6rem 2rem 2rem;
  z-index: 1000;
  transition: right var(--transition-medium);
  overflow-y: auto;
}

.nav-mobile.active {
  right: 0;
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-mobile a {
  color: var(--dark);
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  color: var(--white);
}

.hero-content h1, .hero-content h2, .hero-content p {
  color: var(--text-white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 80%;
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.6s;
  animation-fill-mode: both;
}

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

/* About Section */
.about {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.about-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform var(--transition-slow);
}

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

.about-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

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

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.services-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

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

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

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

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

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

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

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

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

/* Statistics Section */
.statistics {
  padding: 6rem 0;
  background-color: var(--primary);
  color: var(--white);
}

.statistics .section-title {
  color: var(--white);
}

.statistics .section-title::after {
  background-color: var(--white);
}

.statistics-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.stat-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
}

/* Case Studies Section */
.case-studies {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.case-studies-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.case-study {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.case-study:nth-child(even) {
  flex-direction: row-reverse;
}

.case-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

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

.case-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

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

.case-content {
  flex: 1;
}

.case-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.case-content p {
  margin-bottom: 1rem;
}

/* Resources Section */
.resources {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.resources-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.resource-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.resource-card h3 {
  margin-bottom: 1rem;
}

.resource-card a {
  color: var(--primary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.resource-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

/* Insights Section */
.insights {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.insights-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.insight-item {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.insight-item:nth-child(even) {
  flex-direction: row-reverse;
}

.insight-image {
  flex: 1;
  max-width: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

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

.insight-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

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

.insight-text {
  flex: 2;
}

.insight-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.insight-text p {
  margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  background-color: var(--bg-accent);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.toggle-label {
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.toggle-label.active {
  color: var(--primary);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0 1rem;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--light-medium);
  transition: var(--transition-medium);
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition-medium);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--primary);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.pricing-tables {
  position: relative;
}

.pricing-standard, .pricing-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity var(--transition-medium);
  pointer-events: none;
}

.pricing-standard.active, .pricing-premium.active {
  opacity: 1;
  position: relative;
  pointer-events: all;
}

.pricing-plan {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
}

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

.pricing-plan.recommended {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.pricing-plan.recommended:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-plan h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.price-description {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.pricing-plan ul {
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-plan ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bg-tertiary);
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-plan ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

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

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
  position: relative;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  max-width: 800px;
}

.testimonial-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
}

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

.testimonial-content {
  flex: 1;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-content p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  font-family: 'Georgia', serif;
}

.testimonial-author h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.testimonial-author p {
  font-style: normal;
  margin-bottom: 0;
  color: var(--text-light);
  padding-left: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.prev-testimonial, .next-testimonial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

/* Team Section */
.team {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.team-members .card-image {
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Community Section */
.community {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.community-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.community-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

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

.community-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

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

.community-text {
  flex: 1;
}

.community-text ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.community-text ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.community-text ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Customer Stories Section */
.customer-stories {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.stories-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.story-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

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

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

.story-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.story-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
  flex-grow: 1;
}

/* Instructors Section */
.instructors {
  padding: 6rem 0;
  background-color: var(--bg-accent);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-secondary);
}

.instructors-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.workshop-schedule {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.workshop-schedule h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark);
}

.workshop-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.workshop-item {
  display: flex;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-tertiary);
}

.workshop-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.workshop-date {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--primary);
  width: 150px;
}

.workshop-details h4 {
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.workshop-details p {
  margin-bottom: 0;
  color: var(--text-light);
}

.workshop-schedule .btn {
  display: block;
  max-width: 200px;
  margin: 0 auto;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.contact-content {
  display: flex;
  gap: 4rem;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-details h3, .contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.contact-details p {
  margin-bottom: 0.75rem;
}

.contact-hours {
  margin-top: 1.5rem;
}

.contact-hours h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.contact-hours p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

.contact-map img {
  width: 100%;
  height: auto;
}

.contact-form {
  flex: 1;
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--bg-tertiary);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  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);
  box-shadow: 0 0 0 3px rgba(30, 107, 140, 0.1);
}

.form-group button {
  width: 100%;
  padding: 0.875rem 1.75rem;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}

.form-group button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  margin-bottom: 1rem;
  height: 60px;
  width: auto;
}

.footer-logo p {
  color: var(--light);
  opacity: 0.8;
}

.footer-links {
  display: flex;
  justify-content: space-between;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--light);
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.footer-column a:hover {
  color: var(--white);
  opacity: 1;
  transform: translateX(5px);
}

.social-links a {
  display: flex;
  align-items: center;
}

.footer-contact h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-contact p {
  color: var(--light);
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

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

.footer-bottom p {
  color: var(--light);
  opacity: 0.6;
  margin-bottom: 0;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  padding: 2rem;
}

.success-content {
  text-align: center;
  max-width: 600px;
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  animation: fadeIn 1s ease-out;
}

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

.success-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

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

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

/* Privacy & Terms Pages */
.page-content {
  padding: 8rem 0 6rem;
  background-color: var(--bg-primary);
}

.page-content .container {
  max-width: 800px;
}

.page-content h1 {
  margin-bottom: 2rem;
  color: var(--dark);
}

.page-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  color: var(--dark);
}

.page-content p, .page-content ul, .page-content ol {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.page-content ul, .page-content ol {
  padding-left: 2rem;
}

.page-content ul li, .page-content ol li {
  margin-bottom: 0.75rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* Cookie Notice */
#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  display: none;
}

#cookie-notice button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color var(--transition-fast);
}

#cookie-notice button:hover {
  background-color: #3d8b40;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content h2 {
    font-size: 1.75rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 2fr;
  }
  
  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .about-content, 
  .case-study, 
  .insight-item, 
  .community-content, 
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .case-study:nth-child(even) {
    flex-direction: column;
  }
  
  .insight-item:nth-child(even) {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-contact {
    grid-column: span 1;
  }
  
  .testimonial-item {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-content p {
    padding-left: 0;
  }
  
  .testimonial-content p::before {
    left: 50%;
    transform: translateX(-50%);
    top: -2rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.float {
  animation: float 6s ease-in-out infinite;
}

.pulse {
  animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}