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

.omapflege {
  max-width: 400px;      width: 100%;
  margin: 0 auto;      }

.omapflege img {
  width: 100%;
  height: auto;          display: block;        border-radius: 12px; }

body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #FFF5FA;
  background-color: #FFF5FA;
}

:root {
  --primary-pink: #ff99cc;
  --secondary-lilac: #d9b3ff;
  --accent-purple: #8c52ff;
  --light-bg: #fff5fa;
  --dark-text: #2d1a4d;
  --gray: #6b5b95;
}

.header {
  background: linear-gradient(135deg, var(--primary-pink), var(--secondary-lilac));
  padding: 1rem 0;
  position: sticky;
  border-radius: 180px;
  top: 0;
  margin-left: 3cm;      margin-right: 3cm;     margin-top: 1rem;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  color: #FFF5FA;
}

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

.logo h6 a {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

.logo h6 a:hover {
  color: var(--accent-purple);
}

.nav-menu {
  display: flex;
}

.nav-menu ul {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: background 0.3s, color 0.3s;
}

.nav-menu a:hover {
  background: var(--accent-purple);
  color: #fff;
}

.contact-button .button {
  background: var(--accent-purple);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.contact-button .button:hover {
  background: var(--primary-pink);
}

.nav-toggle, .nav-close {
  display: none;
}

.hero {
  background: var(--light-bg);
  padding: 4rem 0;
  text-align: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.hero-buttons .button {
  display: inline-block;
  padding: 0.75rem 2rem;
  margin: 0.5rem;
  justify-content: center;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.hands {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  width: 100%;   height: auto;
}

.hands img {
  width: 850px;           height: auto;           object-fit: cover;      border-radius: 12px;  }

.hero-buttons .button.outline {
  background: transparent;
  border: 2px solid var(--accent-purple);
  color: var(--accent-purple);
}

.hero-buttons .button.outline:hover {
  background: var(--accent-purple);
  color: #fff;
}

.hero-buttons .button:not(.outline) {
  background: var(--primary-pink);
}

.hero-buttons .button:not(.outline):hover {
  background: var(--secondary-lilac);
}

.hero figure img {
  max-width: 100%;
  border-radius: 15px;
  margin-top: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.services {
  padding: 4rem 0;
  background: #fff;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services h3 {
  color: var(--accent-purple);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.services h2 {
  font-size: 2.5rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.services p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.service-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-card img {
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

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

.about {
  padding: 4rem 0;
  background: var(--light-bg);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

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

.about-text p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.about-text .button {
  background: var(--primary-pink);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.about-text .button:hover {
  background: var(--accent-purple);
}

.about figure img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.team {
  padding: 4rem 0;
  background: #fff;
  text-align: center;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.team figure img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.team-text h3 {
  font-size: 1.8rem;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.team-text h6 {
  font-size: 1.5rem;
  color: var(--accent-purple);
  margin-bottom: 0.5rem;
}

.team-text p {
  color: var(--gray);
}

.testimonials {
  padding: 4rem 0;
  background: var(--light-bg);
  text-align: center;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.testimonials h2 {
  font-size: 2.5rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.testimonials p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-card figure img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.testimonial-card h3 {
  font-size: 1.5rem;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  color: var(--gray);
}

.blog {
  padding: 4rem 0;
  background: #fff;
  text-align: center;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog h2 {
  font-size: 2.5rem;
  color: var(--dark-text);
  margin-bottom: 2rem;
}

.blog article {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog article:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.blog article h2 a {
  font-size: 1.8rem;
  color: var(--dark-text);
  text-decoration: none;
  transition: color 0.3s;
}

.blog article h2 a:hover {
  color: var(--accent-purple);
}

.blog-meta {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.blog-meta a {
  color: var(--gray);
  text-decoration: none;
}

.blog-meta a:hover {
  color: var(--accent-purple);
}

.blog article p {
  color: var(--gray);
}

.cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-pink), var(--secondary-lilac));
  text-align: center;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-inner h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-inner p {
  color: #f0e6ff;
  margin-bottom: 1.5rem;
}

.cta-inner .button.outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-inner .button.outline:hover {
  background: #fff;
  color: var(--accent-purple);
}

.footer {
  background: var(--dark-text);
  padding: 2rem 0;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.footer-logo h6 a {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.social-links {
  display: flex;
  list-style: none;
}

.social-links li {
  margin-left: 1rem;
}

.social-links a {
  color: #fff;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--primary-pink);
}

.social-links svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .header-inner {
      flex-wrap: wrap;
  }

  .nav {
      order: 3;
      width: 100%;
  }

  .nav-toggle {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
  }

  .nav-toggle svg {
      fill: #fff;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    color: var(--dark-text);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 0.25rem 0;
    font-size: 1rem;
    background: var(--light-bg);
  }

  .nav-menu.active {
      display: block;
  }

  .nav-menu ul {
      flex-direction: column;
  }

  .nav-menu li {
      margin: 0.5rem 0;
  }

  .nav-close {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
      position: absolute;
      top: 1rem;
      right: 1rem;
  }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-toggle svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-purple);
  }

  .nav-close svg {
      fill: #fff;
  }

  .hero h1 {
      font-size: 2.5rem;
  }

  .about-container, .team-container {
      grid-template-columns: 1fr;
  }

  .about figure, .team figure {
      text-align: center;
  }

  .about figure img, .team figure img {
      max-width: 300px;
  }
}



@media (max-width: 480px) {
  .hero h1 {
      font-size: 2rem;
  }

  .hero-buttons .button {
      display: block;
      margin: 0.5rem auto;
      width: fit-content;
  }

  .services h2, .testimonials h2, .blog h2, .cta-inner h2 {
      font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    order: 3;
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    background: var(--dark-text);
    width: 100%;
    left: 0;
    top: 100%;
    z-index: 999;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .hands img {
    width: 100%;
    height: auto;
  }

  .about-container,
  .team-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about figure img,
  .team figure img {
    max-width: 100%;
    margin: 0 auto;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-buttons .button {
    display: block;
    margin: 0.5rem auto;
    width: 90%;
    text-align: center;
  }

  .services h2,
  .testimonials h2,
  .blog h2,
  .cta-inner h2 {
    font-size: 1.6rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .omapflege {
    max-width: 100%;
    padding: 0 1rem;
  }

  .about-text .button {
    width: 90%;
    display: inline-block;
  }
}

