/* Converting React/Tailwind styles to pure CSS with custom properties */
:root {
  /* Colors based on the Site.pro template design */
  --primary: #e879a7; /* Pink from template */
  --primary-foreground: #ffffff;
  --secondary: #d4a5c7; /* Lighter pink */
  --secondary-foreground: #4a4a4a;
  --background: #ffffff;
  --foreground: #2d2d2d;
  --muted: #ffffff;
  --muted-foreground: #6b6b6b;
  --card: #ffffff;
  --border: #e5e5e5;
  /* Updated navigation colors to match template */
  /* Updated navigation colors to match template */
  /* Updated navigation colors to match template */
  --nav-background: #f8f9fa; /* Light background like template */
  --quote-background: #cc5500; /* Dark orange for quote container */
  --quote-shadow-color: rgba(204, 85, 0, 0.3);
  --hero-bg: #f0f8ff; /* Light blue background for hero */

  /* Typography - Inter font like template */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 5rem 1rem;

  /* Border radius */
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

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

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Updated navigation to match Site.pro template design */
.navbar {
  background-color: var(--nav-background);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--foreground);
}

.logo-image {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.logo-text {
  font-weight: bold;
  font-size: 1.125rem;
  color: var(--foreground);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--foreground);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  bottom: -6px;
}

.mobile-nav {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  background-color: var(--nav-background);
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

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

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

.btn-primary:hover {
  background-color: #d66a96;
}

.btn-outline {
  border-color: var(--quote-background);
  color: var(--quote-background);
  background-color: transparent;
}

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

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.icon {
  font-size: 1rem;
}

.btn:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--quote-background);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn:disabled:hover {
  background-color: var(--primary-foreground);
}

/* Updated hero section to match Site.pro template structure */
.hero {
  position: relative;
  background: var(--hero-bg);
  padding: 6rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--hero-bg);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-logo-image {
    width: 500px;
    opacity: 0.8;
    transition: all 1s ease;
}

/* Animation beim Laden der Seite */
.animated-logo {
    transform: scale(0);
    opacity: 0;
    animation: logo-appear 1.5s forwards;
}

@keyframes logo-appear {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Optional: leichtes Aufleuchten beim Hover */
.hero-logo-image:hover {
    opacity: 1;
    transform: scale(1.05);
}


@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Added hero text styling to match template */
.hero-text {
  margin-bottom: 2rem;
}

.hero-welcome {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}

/* Updated quote styling to match Site.pro orange container */
.hero-quote-main {
  background-color: var(--quote-background);
  color: white;
  border-radius: 3rem;
  padding: 1rem 2rem;
  margin: 1rem auto;
  max-width: 900px;
  box-shadow: 0 4px 15px var(--quote-shadow-color);
  border: none;
  white-space: nowrap;
  display: inline-block;
  transform: translateX(-5%);
}

.hero-quote-main p {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
  line-height: 1.6;
  font-style: italic;
}

.hero-subtitle {
  margin: 2rem 0;
  text-align: center;
}

.hero-subtitle p {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

/* Updated target group section styling */
.target-group {
  background: #ffffff;
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

.target-group-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.target-card {
  background-color: var(--card);
  border: 2px solid rgba(212, 165, 199, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.target-card:hover {
  border-color: var(--secondary);
}

.target-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.target-card ul {
  list-style: none;
  padding: 0;
}

.target-card li {
  padding: 0.25rem 0;
  color: var(--muted-foreground);
}

.target-highlight {
  text-align: center;
  background-color: rgba(232, 121, 167, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}

.target-highlight p {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.target-highlight p:first-child {
  font-size: 2rem;
}

/* Updated approach section styling */
.approach {
  background: rgba(245, 245, 245, 0.3);
  padding: var(--section-padding);
}

.approach-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.approach-item {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.approach-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.approach-item ul {
  list-style: none;
  padding: 0;
}

.approach-item li {
  padding: 0.25rem 0;
  color: var(--muted-foreground);
}

.approach-item p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.approach-heart {
  text-align: center;
  background-color: rgba(232, 121, 167, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}

.approach-heart p {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.approach-heart p:first-child {
  font-size: 2rem;
}

/* Services Section */
.services {
  background: #ffffff;
  padding: var(--section-padding);
}

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

.service-card {
  background-color: var(--card);
  border: 2px solid rgba(212, 165, 199, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) {
  transition-delay: 0.1s;
}
.service-card:nth-child(2) {
  transition-delay: 0.2s;
}
.service-card:nth-child(3) {
  transition-delay: 0.3s;
}

.service-card:hover {
  border-color: var(--secondary);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted-foreground);
}

/* Services Detail Page */
.services-detail {
  padding: var(--section-padding);
}

.service-detail-card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border);
}

.service-detail-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.service-lead {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-style: italic;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--muted-foreground);
}

/* Target Groups Section */
.target-groups-section {
  margin: 4rem 0;
}

.target-groups-section h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.target-groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.target-group-card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.target-group-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.target-group-card ul {
  list-style: none;
  padding: 0;
}

.target-group-card li {
  padding: 0.25rem 0;
  color: var(--muted-foreground);
}

/* Service Locations */
.service-locations {
  margin: 4rem 0;
}

.service-locations h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.location-card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.location-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.location-card:nth-child(1) {
  transition-delay: 0.1s;
}
.location-card:nth-child(2) {
  transition-delay: 0.2s;
}
.location-card:nth-child(3) {
  transition-delay: 0.3s;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.location-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.location-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.location-card p {
  color: var(--muted-foreground);
}

/* Process Section */
.process-section {
  margin: 4rem 0;
}

.process-section h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--muted-foreground);
}

/* Updated contact CTA section styling */
.contact-cta {
  background: rgba(232, 121, 167, 0.05);
  padding: var(--section-padding);
  text-align: center;
}

.contact-cta h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
}

.contact-item .icon {
  font-size: 1.25rem;
}

/* Page Header */
.page-header {
  background: var(--hero-bg);
  padding: 4rem 0 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.contact-info-card h2,
.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.practice-subtitle {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 2rem;
}

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

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-detail-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-detail-item p {
  color: var(--muted-foreground);
  margin: 0;
}

.contact-detail-item a {
  color: var(--primary);
  text-decoration: none;
}

.contact-detail-item a:hover {
  text-decoration: underline;
}

.opening-hours {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.opening-hours h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.opening-hours p {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.hours-note {
  font-style: italic;
  font-size: 0.875rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  outline: none;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: auto;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Map Section */
.map-section {
  padding: 2rem 0;
  background: rgba(245, 245, 245, 0.3);
}

.map-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

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

.map-placeholder {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.map-icon {
  font-size: 3rem;
  color: var(--primary);
}

.map-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.map-content p {
  color: var(--muted-foreground);
  margin: 0;
}

/* Team Section */
.team-section {
  padding: var(--section-padding);
}

.team-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.team-intro h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.team-intro-text {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

.team-members {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.team-member {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(30px);
}

.team-member.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.team-member:nth-child(1) {
  transition-delay: 0.1s;
}
.team-member:nth-child(2) {
  transition-delay: 0.2s;
}
.team-member:nth-child(3) {
  transition-delay: 0.3s;
}

.member-photo {
  text-align: center;
}

.photo-placeholder {
  width: 150px;
  height: 150px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondary-foreground);
  margin: 0 auto;
}

.member-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

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

.member-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Philosophy Section */
.philosophy-section {
  padding: var(--section-padding);
  background-color: rgba(245, 245, 245, 0.3);
}

.philosophy-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.philosophy-quote {
  text-align: center;
  margin-bottom: 3rem;
}

.philosophy-quote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary);
  background-color: rgba(232, 121, 167, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: inline-block;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.philosophy-item {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.philosophy-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.philosophy-item:nth-child(1) {
  transition-delay: 0.1s;
}
.philosophy-item:nth-child(2) {
  transition-delay: 0.2s;
}
.philosophy-item:nth-child(3) {
  transition-delay: 0.3s;
}

.philosophy-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.philosophy-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.philosophy-item p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Values Section */
.values-section {
  padding: var(--section-padding);
}

.values-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

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

.value-card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.value-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.value-card:nth-child(1) {
  transition-delay: 0.1s;
}
.value-card:nth-child(2) {
  transition-delay: 0.2s;
}
.value-card:nth-child(3) {
  transition-delay: 0.3s;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.value-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Legal Content */
.legal-content {
  padding: var(--section-padding);
}

.legal-card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary);
}

.legal-section h3 {

