    :root {
      --primary-color: #1f2937;
      --secondary-color: rgb(254,251,251);
      --accent-color: rgb(43, 156, 153);
      --second-accent-color: rgb(25, 116, 126);
      --third-accent-color: rgb(238, 226, 231);
      --mobile-menu-fg-color: rgb(25, 116, 126);
      --milk-color: rgb(254, 251, 251);
      --font-main: 'Montserrat', sans-serif;
      --fs24: 24px;
      --fs20: 20px;
      --fs18: 18px;
      --fs36: 36px;
      --fs30: 30px;
      --fs17: 17px;
      --fs16: 16px;
      --fs14: 14px;
      --fs13: 13px;
    }

@media (max-width: 767px) {
  :root {
    --fs36: 28px;
    --fs30: 24px;
    --fs24: 20px;
    --fs20: 17px;
    --fs18: 16px;
    --fs17: 15px;
    --fs16: 14px;
    --fs14: 12px;
    --fs13: 11px;
  }
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
  scroll-behavior: smooth;
}

    body {
      font-family: var(--font-main);
      background-color: var(--secondary-color);
      color: var(--primary-color);
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    /* Keyword Highlighting Styles */
    .keyword-primary {
      color: var(--accent-color);
      font-weight: 600;
      position: relative;
      transition: all 0.3s ease;
    }

    .keyword-primary:hover {
      transform: translateY(-1px);
      text-shadow: 0 2px 4px rgba(43, 156, 153, 0.3);
    }

    .keyword-emotion {
      color: #444;
      font-weight: 500;
      background: linear-gradient(135deg, rgba(238, 226, 231, 0.4) 0%, rgba(43, 156, 153, 0.08) 100%);
      padding: 4px 10px;
      border-radius: 8px;
      border-left: 2px solid rgba(238, 226, 231, 0.6);
      position: relative;
      transition: all 0.3s ease;
      box-shadow: 0 1px 3px rgba(238, 226, 231, 0.2);
      font-weight: bold;
    }

    .keyword-emotion:hover {
      background: linear-gradient(135deg, rgba(238, 226, 231, 0.6) 0%, rgba(43, 156, 153, 0.15) 100%);
      border-left-color: var(--third-accent-color);
      box-shadow: 0 2px 6px rgba(238, 226, 231, 0.3);
      transform: translateY(-1px);
    }

    .keyword-outcome {
      color: var(--second-accent-color);
      font-weight: 600;
      background: linear-gradient(120deg, rgba(25, 116, 126, 0.1) 0%, rgba(43, 156, 153, 0.1) 100%);
      padding: 3px 8px;
      border-radius: 6px;

      box-shadow: 0 1px 3px rgba(43, 156, 153, 0.1);
      transition: all 0.3s ease;
      position: relative;
    }

    .keyword-outcome:hover {
      background: linear-gradient(120deg, rgba(25, 116, 126, 0.2) 0%, rgba(43, 156, 153, 0.2) 100%);
      box-shadow: 0 2px 6px rgba(43, 156, 153, 0.2);
      transform: translateY(-1px);
    }

    .keyword-trust {
      font-style: italic;
      color: var(--accent-color);
      font-weight: 600;
      background: rgba(43, 156, 153, 0.08);
      padding: 2px 6px;
      border-radius: 12px;
      border: 1px solid rgba(43, 156, 153, 0.2);
      transition: all 0.3s ease;
      position: relative;
    }

    .keyword-trust:hover {
      background: rgba(43, 156, 153, 0.15);
      border-color: rgba(43, 156, 153, 0.4);
      box-shadow: 0 0 8px rgba(43, 156, 153, 0.2);
    }

    .keyword-pulse {
      animation: subtle-pulse 3s ease-in-out infinite;
      color: var(--accent-color);
      font-weight: 600;
    }

    @keyframes subtle-pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.8; }
    }

    .keyword-metaphor {
      background: linear-gradient(45deg, var(--accent-color), var(--second-accent-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      position: relative;
    }

    .keyword-gentle-glow {
      text-shadow: 0 0 8px rgba(43, 156, 153, 0.3);
      color: var(--accent-color);
      font-weight: 500;
    }

    /* Mobile optimizations for keywords */
    @media (max-width: 767px) {
      .keyword-primary, .keyword-emotion, .keyword-outcome, .keyword-trust {
        font-size: inherit;
        line-height: inherit;
      }
      
      .keyword-emotion {
        padding: 1px 4px;
        margin: 0 1px;
      }
      
      .keyword-primary:hover, .keyword-emotion:hover, .keyword-outcome:hover {
        transform: none; /* Disable hover transforms on mobile */
      }
    }

    /* Accessibility improvements */
    @media (prefers-reduced-motion: reduce) {
      .keyword-pulse {
        animation: none;
      }
      
      .keyword-primary, .keyword-emotion, .keyword-outcome, .keyword-trust {
        transition: none;
      }
    }

    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgb(250,248,245);
      opacity: 0.2;
      z-index: -1;
      pointer-events: none;
    }


    header {
      position: sticky;
      top: 0;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      z-index: 1000;
      background: rgb(237,246,241);
      backdrop-filter: blur(8px) saturate(120%);
      -webkit-backdrop-filter: blur(8px) saturate(120%);
      border-bottom: 1.5px solid rgba(43,156,153,0.13);
      border-radius: 0 0 18px 18px;
      box-shadow: 0 2px 12px rgba(43,156,153,0.10);
    }

    .container {
      max-width: 1350px;
      margin: 0 auto;
      padding: 0 0;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--accent-color);
    }

    .menu {
      display: none;
      flex-direction: column;
      gap: 1rem;
      transition: all 0.3s ease;
    }

    .menu a {
      text-decoration: none;
      color: var(--primary-color);
      font-weight: 600;
      font-size: var(--fs18);
    }

    .menu a:hover {
  color: var(--accent-color);
  border-radius: 8px;
}

    .toggle {
      display: block;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--accent-color);
    }

    @media (min-width: 768px) {
      .menu {
        display: flex !important;
        flex-direction: row;
      }
    }

    .hero {
      background: linear-gradient(135deg, rgba(238, 226, 231, 0.15) 0%, rgba(212, 244, 244, 0.25) 50%, rgba(235, 251, 251, 0.15) 100%);
      padding: 4rem 1rem 5rem;
      position: relative;
      overflow: hidden;
      animation: fadeIn 1s ease-in;
      display: flex;
      flex-direction: column;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(43, 156, 153, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 4rem;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .hero-text-block {
      text-align: left;
      max-width: 100%;
      padding-right: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .hero-text-block h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--accent-color);
      margin-bottom: 0.5rem;
    }

    .hero-text-block .subtitle {
      font-size: 1.2rem;
      font-weight: 500;
      color: #555;
      margin-bottom: 2rem;
    }

    .hero-paragraphs {
      margin-top: 1.5rem;
    }

    .hero-paragraphs p {
      margin-bottom: 1.2rem;
      font-size: var(--fs20);
      color: rgb(68, 68, 68);
      line-height: 1.7;
      text-align: justify;
      hyphens: auto;
    }

    .hero-paragraphs blockquote {
      background: linear-gradient(135deg, rgba(222,235,221, 0.6) 0%, rgba(238, 226, 231, 0.4) 100%);
      padding: 1.5rem;
      border-left: 4px solid var(--accent-color);
      margin: 1.5rem 0;
      border-radius: 12px;
      font-size: var(--fs20);
      color: rgb(32, 32, 32);
      box-shadow: 0 4px 16px rgba(43,156,153,0.08);
      position: relative;
    }

    .hero-paragraphs blockquote::before {
      content: '"';
      position: absolute;
      top: -10px;
      left: 15px;
      font-size: 4rem;
      color: var(--accent-color);
      opacity: 0.2;
      font-family: Georgia, serif;
      line-height: 1;
    }

    /* Feelings List Styling */
    .feelings-list-container {
      display: grid;
      grid-template-columns: 35% auto;
      gap: 2rem;
      align-items: flex-start;
      position: relative;
    }

    .feelings-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 0.35rem;
      background: rgba(222,235,221);
      border-left: 4px solid var(--accent-color);
      border-radius: 8px;
      padding: 2rem 2rem 2rem 1.5rem;
      margin: 1.5rem 0;
      box-shadow: 0 4px 16px rgba(43,156,153,0.08);
    }

    .feelings-list li {
      position: relative;
      padding-left: 2rem;
      font-size: var(--fs17);
      line-height: 1.6;
      color: rgb(32, 32, 32);
      transition: all 0.3s ease;
    }

    .feelings-list li::before {
      content: '◆';
      position: absolute;
      left: 0;
      color: var(--accent-color);
      font-size: 0.7rem;
      top: 0.45rem;
      transition: all 0.3s ease;
    }

    .feelings-list li:hover {
      transform: translateX(4px);
      color: var(--second-accent-color);
    }

    .feelings-list li:hover::before {
      color: var(--second-accent-color);
      transform: scale(1.3);
    }

    /* Feelings Abstract Design Element */
    .feelings-abstract-design {
      position: relative;
      width: 240px;
      height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .feelings-shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.55;
      mix-blend-mode: multiply;
      animation: floatGentle 10s ease-in-out infinite;
    }

    .feelings-shape-1 {
      width: 150px;
      height: 150px;
      background: radial-gradient(circle, rgba(238, 226, 231, 0.7) 0%, rgba(238, 226, 231, 0.15) 70%);
      top: 8%;
      left: 10%;
      animation-delay: 0s;
      border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    .feelings-shape-2 {
      width: 120px;
      height: 120px;
      background: radial-gradient(circle, rgba(43, 156, 153, 0.3) 0%, rgba(43, 156, 153, 0.08) 70%);
      top: 30%;
      right: 12%;
      animation-delay: 2.5s;
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    .feelings-shape-3 {
      width: 110px;
      height: 110px;
      background: radial-gradient(circle, rgba(212, 244, 244, 0.75) 0%, rgba(212, 244, 244, 0.2) 70%);
      bottom: 25%;
      left: 8%;
      animation-delay: 5s;
      border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }

    .feelings-shape-4 {
      width: 95px;
      height: 95px;
      background: radial-gradient(circle, rgba(25, 116, 126, 0.25) 0%, rgba(25, 116, 126, 0.06) 70%);
      bottom: 10%;
      right: 18%;
      animation-delay: 7.5s;
      border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    }

    .feelings-center-glow {
      position: absolute;
      width: 180px;
      height: 180px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(238, 226, 231, 0.2) 0%, transparent 70%);
      border-radius: 50%;
      animation: pulseGentle 7s ease-in-out infinite;
    }

    @keyframes floatGentle {
      0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
      }
      25% {
        transform: translate(-8px, -12px) rotate(4deg) scale(1.04);
      }
      50% {
        transform: translate(8px, 8px) rotate(-4deg) scale(0.96);
      }
      75% {
        transform: translate(-4px, 12px) rotate(2deg) scale(1.02);
      }
    }

    @keyframes pulseGentle {
      0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.35;
      }
      50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.5;
      }
    }

    .feelings-abstract-design:hover .feelings-shape {
      animation-duration: 7s;
      opacity: 0.7;
    }

    .feelings-abstract-design:hover .feelings-center-glow {
      animation-duration: 5s;
    }


    .hero h1 {
      font-size: clamp(1.8rem, 5vw, 3rem);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .cta-button {
      background-color: var(--accent-color);
      color: white;
      padding: 0.8rem 1.5rem;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: var(--fs20);
      text-decoration: none;
      display: inline-block;
      margin-top: 1rem;
      transform: scale(1);
      box-shadow: 0 2px 12px rgba(43,156,153,0.10);
      transition: transform 0.22s cubic-bezier(.4,1.4,.6,1), box-shadow 0.22s cubic-bezier(.4,1.4,.6,1);
      font-family: 'Montserrat', sans-serif;;
    }

    .cta-button:hover {
      background-color: rgb(38, 139, 136);
      transform: scale(1.07);
      box-shadow: 0 6px 24px rgba(43,156,153,0.18), 0 1.5px 8px rgba(0,0,0,0.10);
    }

    .hero-image-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-top: 2.3em;
    }

    .hero-image-wrapper img {
      max-width: 100%;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      object-fit: cover;
      object-position: center top;
      height: auto;
      aspect-ratio: unset;
    }

    .hero-image-wrapper .cta-button {
      width: 100%;
      max-width: 400px;
      text-align: center;
      margin-top: 1rem;
      box-sizing: border-box;
    }

    @media (max-width: 767px) {
      .hero {
        padding: 2rem 1rem 3rem;
      }

      .hero::before {
        width: 400px;
        height: 400px;
        top: -30%;
        right: -30%;
      }

      .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero-text-block {
        padding-right: 0;
        padding-top: 0;
        order: 2;
        width: 100%;
      }

      .hero-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 6rem 0 0 0;
        order: 1;
      }

      .hero-image-wrapper img {
        width: 33%;
        max-width: 100px;
        aspect-ratio: 1 / 1;
        height: auto;
        object-fit: cover;
        object-position: center top;
        display: block;
        margin: 0 auto;
        transform: scale(3);
        transform-origin: center center;
        border-radius: 22% 28% 26% 22%/28% 22% 28% 22%;
        margin-bottom: 25%;
        box-shadow:
          0 8px 32px 0 rgba(43,156,153,0.18),
          0 1.5px 8px 0 rgba(0,0,0,0.10),
          0 0 32px 8px rgba(43,156,153,0.13),
          0 0 0 8px rgba(255,255,255,0.10) inset;
        border: 2px solid transparent;
        position: relative;
        z-index: 1;
        background: linear-gradient(135deg, rgba(43,156,153,0.08) 0%, rgba(255,255,255,0.12) 100%);
      }
      .hero-image-wrapper img::before {
        content: '';
        position: absolute;
        inset: -7px;
        border-radius: 36% 42% 40% 36%/42% 36% 42% 36%;
        padding: 0;
        z-index: 2;
        background: linear-gradient(120deg, rgba(43,156,153,0.25) 0%, rgba(255,255,255,0.18) 100%);
        border: 2.5px solid;
        border-image: linear-gradient(120deg, #2b9c99 30%, #fff 70%) 1;
        pointer-events: none;
        animation: borderGlow 3.5s linear infinite;
      }
      .hero-image-wrapper img::after {
        content: '';
        position: absolute;
        left: 18%;
        top: 12%;
        width: 32%;
        height: 18%;
        background: linear-gradient(120deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.0) 100%);
        border-radius: 50%;
        filter: blur(2px);
        opacity: 0.7;
        pointer-events: none;
        z-index: 3;
        animation: sparkle 2.5s ease-in-out infinite alternate;
      }

      .hero-paragraphs blockquote {
        padding: 1rem;
        margin: 1rem 0;
        font-size: var(--fs18);
      }

      .hero-paragraphs blockquote::before {
        font-size: 3rem;
        top: -5px;
        left: 10px;
      }

      /* Feelings List Mobile */
      .feelings-list-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 1.5rem 1rem 1.5rem 1rem;
        margin: 0rem 0;
      }

      .feelings-list {
        gap: 0.7rem;
        margin-top: 0;
      }

      .feelings-list li {
        padding-left: 1.5rem;
        font-size: var(--fs17);
      }

      .feelings-list li::before {
        font-size: 0.6rem;
        top: 0.4rem;
      }


      section.visible {
        padding-top: 1rem;
        padding-bottom: 0rem;
      }
    }

    .hero-closing-paragraph {
      margin-top: 3rem;
      text-align: center;
      max-width: 900px;
    }

    .hero-closing-paragraph p {
      font-size: var(--fs20);
      color: rgb(68, 68, 68);
      line-height: 1.8;
      text-align: center;
      font-weight: 500;
    }

    @media (max-width: 767px) {
      .hero-closing-paragraph {
        margin-top: 2rem;
        padding: 0 1rem;
      }
      .hero-closing-paragraph p {
        font-size: var(--fs18);
        text-align: justify;
        hyphens: auto;
      }
    }

    @media (min-width: 768px) {
      .hero .container {
        grid-template-columns: 1fr 400px;
      }
      .hero-text-block {
        text-align: left;
      }
      .hero-paragraphs p {
        text-align: justify;
        hyphens: auto;
      }
      .hero-image-wrapper img {
        max-width: 400px;
      }
    }

    @media (min-width: 1200px) {
      .hero .container {
        grid-template-columns: 1.2fr 450px;
        gap: 0rem;
      }
    }

    .section {
      padding: 2rem 1rem;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease-out;
    }

    .section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .grid {
      display: grid;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .grid-2 {
        grid-template-columns: 1fr 1fr;
      }
    }

    .card {
  background: linear-gradient(135deg, rgba(254,251,251,0.85) 80%, rgba(254,251,251,0.07) 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 24px rgba(43,156,153,0.10), 0 1.5px 8px rgba(0,0,0,0.07);
  border: 1.5px solid rgba(43,156,153,0.13);
  backdrop-filter: blur(2.5px);
  transition: transform 0.3s, box-shadow 0.3s;
}

    .card:hover {
      transform: translateY(-4px);
    }

    .card.service-card {
      border-top: 4px solid var(--accent-color);
      text-align: center;
      font-size: var(--fs18);
      color: rgb(68, 68, 68);
    }
    .card.service-card i {
      font-size: 2rem;
      color: var(--accent-color);
      margin-bottom: 0.5rem;
    }

    .card.service-card h4 {
      font-size: var(--fs24);
      font-weight: bold;
    }

    .about-image {
      width: 100%;
      border-radius: 12px;
      margin-top: 1rem;
    }

    .about-panel {
      background-color: rgba(234,240,230);
      border-left: 4px solid var(--accent-color);
      padding: 1.5rem;
      border-radius: 12px;
      font-size: var(--fs20);
      color: rgb(68, 68, 68);
      text-align: justify;
      hyphens: auto;
      position: relative;
    }

    .cta-corner {
      right: 2rem;
      bottom: 1.5rem;
      z-index: 2;
      position: static;
      margin-top: 0rem;
      text-align: right;
    }
    .cta-corner .cta-button {
      min-width: 220px;
      font-size: var(--fs18);
      box-shadow: 0 2px 16px rgba(0,0,0,0.10);
      padding: 0.8em 2em;
      background: var(--accent-color, #e6b7d6);
      color: #fff;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .cta-corner .cta-button:hover {
      box-shadow: 0 4px 24px rgba(0,0,0,0.18);
      transform: translateY(-2px) scale(1.04);
    }

    .about-panel.pink {
      background-color: rgb(238,226,231);
      border-left: 4px solid #d6a5bc; /* soft mauve-pink, elegant and professional */
    }

    .about-panel h3 {
      font-size: var(--fs24);
      font-weight: bold;
    }


    footer {
      background-color: rgba(43, 156, 153, 0.05);
      color: rgb(68, 68, 68);
      padding: 0.5rem 0 0.5rem;
      margin-top: 2rem;
      position: relative;
      overflow: hidden;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(43, 156, 153, 0.3), transparent);
    }
    
    .footer-columns {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin: 0 auto;
      border-radius: 0 0 18px 18px;
      box-sizing: border-box;
      flex-wrap: wrap;
      margin-left: 1.5rem;
      margin-right: 1.5rem;
    }
    .footer-col {
      flex: 1 1 0;
      min-width: 180px;
      font-size: 1.08rem;
      color: rgb(68, 68, 68);
      line-height: 1.7;
      box-sizing: border-box;
    }
    .footer-left {
      text-align: left;
      font-weight: 600;
      color: rgb(68, 68, 68);
      letter-spacing: 0.01em;
      padding-right: 1.5rem;
      font-size: var(--fs16);
      display: grid;
      grid-template-rows: repeat(4, auto);
      gap: 0;
      align-content: start;
    }
    .footer-left > div {
      font-size: var(--fs16);
      padding: 0;
      margin: 0;
    }
    .footer-center {
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.02em;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 0;
      margin-bottom: 0;
    }
    .footer-center img {
      margin-top: 0.7rem;
      height: 90px;
    }
    .footer-right {
      text-align: right;
      font-weight: 500;
      letter-spacing: 0.01em;
      padding-left: 1.5rem;
      display: grid;
      grid-template-rows: repeat(4, auto);
      gap: 0;
      align-content: start;
    }
    .footer-right div {
      font-size: var(--fs16);
      padding: 0;
      margin: 0;
    }
    .footer-right a {
      text-decoration: none;
      color: rgb(68, 68, 68);
      font-weight: 600;
      font-size: var(--fs16);
      transition: color 0.3s, background 0.3s, border-radius 0.3s;
      display: inline-block;
    }
    .footer-right a:hover {
      color: var(--accent-color);
      background: rgba(43,156,153,0.07);
      border-radius: 8px;
    }

    @media (max-width: 767px) {
      .footer-columns {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
      }
      .footer-left, .footer-center {
        margin-top: 0.5em;
        text-align: center !important;
        padding: 0 !important;
      }

      .footer-right {
        margin-top: 0.5em;
        text-align: center !important;
        padding: 0 !important;
        margin-bottom: 0.5em;
        gap: 0.4em;
      }

      .footer-center img {
        margin-top: 0;
        height: 65px;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .section-title {
      text-align: center;
      font-size: var(--fs30);
      font-weight: bold;
      color: var(--primary-color);
      margin-bottom: 1rem;
      position: relative;
    }

    .section-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      margin: 0.5rem auto 0;
      background: var(--accent-color);
      border-radius: 2px;
      opacity: 0.9;
      animation: growBar 1s ease;
    }

    @keyframes growBar {
      from {
        width: 0;
        opacity: 0;
      }
      to {
        width: 60px;
        opacity: 1;
      }
    }
  
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cert-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.cert-grid img:hover {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
}

.lightbox .nav {
  position: absolute;
  top: 50%;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 0 1rem;
  transform: translateY(-50%);
}

.lightbox .prev {
  left: 20px;
}

.lightbox .next {
  right: 20px;
}

.fancy-service {
  background: linear-gradient(135deg, rgba(255,255,255,0.85) 80%, rgba(43,156,153,0.07) 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 24px rgba(43,156,153,0.10), 0 1.5px 8px rgba(0,0,0,0.07);
  border: 1.5px solid rgba(43,156,153,0.13);
  backdrop-filter: blur(2.5px);
  transition: transform 0.3s, box-shadow 0.3s;

  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
  text-align: center;
}

.fancy-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.fancy-service i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.fancy-service:hover i {
  transform: scale(1.15);
}

.fancy-service h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.announcement-bar {
  background: rgba(254,251,251);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1100;
  box-shadow: 0 2px 12px rgba(43,156,153,0.10);
  border-radius: 0 0 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-content {
  display: none;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--second-accent-color);
  letter-spacing: 0.02em;
  width: 80%;
}

/* Remove CSS animation for .announcement-marquee */
.announcement-marquee {
  display: inline-block;
  white-space: nowrap;
  min-width: 100%;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--second-accent-color);
  padding: 0.2em 0;
  position: relative;
  left: 0;
  transition: none;
}



.announcement-content .fa-bullhorn {
  color: #2b9c99;
  font-size: 1.3em;
}


.announcement-text {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--second-accent-color);
}

.announcement-text.mobile-only .contact-link {
  font-size: 0.75em;
}

.announcement-btn {
  background-color: var(--accent-color);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.announcement-btn:hover {
  background: linear-gradient(90deg, #19747e 60%, #43e97b 100%);
  box-shadow: 0 4px 16px rgba(43,156,153,0.18);
}


.service-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35); /* slightly lighter for better shadow effect */
  justify-content: center;
  align-items: center;
  z-index: 3000;
  backdrop-filter: blur(6px) brightness(0.95); /* add blur and dimming */
  /* box-shadow: none; */ /* remove previous shadow */
}

.service-modal {
  background: var(--milk-color);
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 16px 48px 0 rgba(0,0,0,0.32), 0 2px 16px rgba(43,156,153,0.10);
  position: relative;
  animation: fadeInScale 0.3s ease;
  text-align: left;
  max-height: 90vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.service-modal::-webkit-scrollbar {
  width: 8px;
  background: #f0f0f0;
  border-radius: 8px;
}

.service-modal::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 8px;
}

.service-modal h3 {
  margin-top: 0;
  color: var(--accent-color);
}

.service-modal p {
  margin: 0.3rem 0;
  line-height: 1.5;
}

.service-modal .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
  background: rgba(243, 244, 246, 0.6);
  border: 1px solid rgba(209, 213, 219, 0.5);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal .close-btn:hover {
  color: #374151;
  background: rgba(243, 244, 246, 1);
  border-color: rgba(209, 213, 219, 0.8);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
  transform: scale(1.05);
}

.service-modal .close-btn:active {
  transform: scale(0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

lav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  color: var(--accent-color);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.service-details-link, .contact-link {
      color: var(--accent-color);
      font-weight: 600;
      text-decoration: underline;
      margin-top: 0.5rem;
      display: inline-block;
      transition: color 0.2s;
      font-size: var(--fs20);
      cursor: pointer;
    }
    .service-details-link:hover, .contact-link:hover {
      color: rgb(38, 139, 136);
    }

    @keyframes heroFloat {
        0% { transform: scale(3) rotate(-6deg) translateY(0); }
        100% { transform: scale(3) rotate(-6deg) translateY(-22px); }
      }
      @keyframes heroTilt {
        0% { filter: brightness(1) drop-shadow(0 0 0 #fff); }
        50% { filter: brightness(1.08) drop-shadow(0 0 8px #2b9c99cc); }
        100% { filter: brightness(1) drop-shadow(0 0 0 #fff); }
      }
      @keyframes borderGlow {
        0% { filter: drop-shadow(0 0 0px #2b9c99); }
        50% { filter: drop-shadow(0 0 8px #2b9c99); }
        100% { filter: drop-shadow(0 0 0px #2b9c99); }
      }
      @keyframes sparkle {
        0% { opacity: 0.7; left: 18%; top: 12%; }
        100% { opacity: 1; left: 28%; top: 18%; }
      }

@media (max-width: 767px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: inline !important; }
  #how_i_work .about-panel {
    margin-bottom: 1.5rem;
  }
  #how_i_work .about-panel:last-child {
    margin-bottom: 0rem;
  }

  .cta-corner .cta-button {
    display: block;
    text-align: center;
  }

  /* Modal adjustments for mobile to prevent title/close button overlap */
  .service-modal {
    padding: 1.5rem;
  }

  .service-modal h3 {
    margin-top: 1rem;
    padding-right: 48px; /* Reserve space for close button */
    margin-bottom: 1rem;
  }

  .service-modal .close-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    top: 12px;
    right: 12px;
  }
}
@media (min-width: 768px) {
  .desktop-only { display: inline !important; }
  .mobile-only { display: none !important; }
}

.service-price {
  display: inline-flex;
  align-items: right;
  justify-content: center;
  background: linear-gradient(90deg, #fff 80%, #eafaf9 100%);
  color: var(--accent-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.45em 1.2em;
  box-shadow: 0 2px 12px rgba(43,156,153,0.08);
  letter-spacing: 0.5px;
  min-width: 90px;
  text-align: center;
  transition: box-shadow 0.2s;
  border: none;
  font-size: 0.9em;
}
.service-price:hover {
  box-shadow: 0 4px 18px rgba(43,156,153,0.15);
}

@media (min-width: 768px) {
  .service-price {
    font-size: 1em;
  }
}

.service-details-size {
  font-size: var(--fs18);
}


.subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--accent-color);
  letter-spacing: 0.5px;
  margin-top: -0.3rem;
  margin-bottom: 0.2rem;
  font-family: 'Montserrat', sans-serif;
}

    .hero-slogan {
      font-size: var(--fs36);
      color: var(--primary-color);
      text-align: left;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 1rem;
      margin-top: 0;
      position: relative;
      z-index: 2;
      line-height: 1.3;
      order: 0;
    }

    @media (max-width: 767px) {
      .hero-slogan {
        text-align: center;
        order: 0;
        margin-bottom: 1.5rem;
      }

      .hero > .container:first-of-type {
        order: 0;
      }

      .hero > .container:last-of-type {
        order: 2;
        display: flex;
        flex-direction: column;
      }

    }  .header-name-block {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: var(--fs24);
  font-weight: bold;
  line-height: 1.1;
}

.no-break {
  white-space: nowrap;
}



  /* Footer Social Media Icons */
  .footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
    align-items: center;
  }

  .social-icon-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: rgba(43, 156, 153, 0.08);
    border: 1px solid rgba(43, 156, 153, 0.2);
    box-shadow: 0 2px 8px rgba(43, 156, 153, 0.08);
  }

  .social-icon-btn i {
    font-size: 26px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    color: var(--accent-color);
  }

  .social-icon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .social-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(43, 156, 153, 0.2);
    border-color: rgba(43, 156, 153, 0.3);
  }

  .social-icon-btn:hover i {
    transform: scale(1.1);
    color: white;
  }

  .social-icon-btn:active {
    transform: translateY(-1px);
  }

  /* WhatsApp Button */
  .whatsapp-btn::before {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  }

  .whatsapp-btn:hover::before {
    opacity: 1;
  }

  /* Instagram Button */
  .instagram-btn::before {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
  }

  .instagram-btn:hover::before {
    opacity: 1;
  }



.services-group {
  padding: 1.5rem 1rem;
  border-radius: 18px;
  background: #f8f8fa;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.services-group-title {
  text-align: center;
  font-size: var(--fs24);
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .services-group {
    padding: 1rem 0.2rem;
  }
}


    
    .note-block {
      display: flex;
      align-items: flex-start;
      padding: 0.75em 1em;
      margin: 1.5em 0 0.5em 0;
      font-size: var(--fs18);
      font-style: italic;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      text-align: justify;
      hyphens: auto;
      width: 50%;
      margin-left: 50%;
    }
  @media (max-width: 767px) {
    footer {
      padding: 2rem 0 1.5rem;
      margin-top: 2rem;
    }
    
    .note-block {
      width: 100%;
      margin-left: 0;
    }

    .footer-container {
      padding: 0 1.25rem;
    }
    
    .footer-top {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding-bottom: 0;
    }
    
    .footer-brand {
      text-align: center;
      align-items: center;
    }
    
    .footer-logo {
      height: 65px;
    }
    
    .footer-tagline {
      font-size: 0.875rem;
      text-align: center;
    }
    
    .footer-navigation,
    .footer-connect {
      text-align: center;
    }
    
    .footer-heading {
      margin-bottom: 0.875rem;
    }
    
    .footer-heading::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .footer-navigation .footer-links {
      align-items: center;
    }
    
    .footer-navigation .footer-links a::before {
      display: none;
    }
    
    .footer-navigation .footer-links a:hover {
      padding-left: 0;
    }
    
    .footer-connect .footer-social-icons {
      justify-content: center;
    }
    
    .social-icon-btn {
      width: 48px;
      height: 48px;
    }
    
    .social-icon-btn i {
      font-size: 24px;
    }
  }
  
  h1 {
  display: none;
  }

  @media (max-width: 767px) {
  .hero-image-wrapper .cta-button {
    width: 90%;
    max-width: 320px;
    font-size: 1.1rem;
  }
}

/* --- About Me Redesign --- */
    .about-grid {
      display: grid;
      grid-template-columns: 0.9fr 2.1fr;
      align-items: center;
    }
    .about-image-block {
      display: flex;
      justify-content: center;
      align-items: stretch;
      height: 100%;
    }
    .about-lotus-img {
      width: 320px;
      height: 100%;
      max-width: 100%;
      max-height: 100%;
      object-fit: cover;
      object-position: center top;
      border-radius: 18px;
      box-shadow: 0 8px 32px rgba(43,156,153,0.13);
      background: linear-gradient(135deg, rgba(43,156,153,0.08) 0%, rgba(255,255,255,0.12) 100%);
      display: block;
    }
    .about-text-block {
      padding: 0 0;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      margin: 0 !important;
    }
    .cert-gallery-strip {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
      justify-content: space-evenly;
      align-items: center;
      overflow: hidden;
      padding: 0.75rem 0.5rem;
      scrollbar-width: none; /* Firefox */
      background: linear-gradient(135deg, rgba(250,250,252,0.5) 0%, rgba(245,247,250,0.4) 100%);
      border-radius: 14px;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(43,156,153,0.08);
    }
    .cert-gallery-strip::-webkit-scrollbar {
      display: none; /* Chrome, Safari */
    }
    .cert-gallery-strip img {
      width: 150px;
      height: 106px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 
        0 1px 3px rgba(0,0,0,0.08),
        0 2px 8px rgba(43,156,153,0.06),
        0 0 0 1px rgba(255,255,255,0.5);
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(250,252,255,0.95) 100%);
      border: 1px solid rgba(43,156,153,0.1);
      position: relative;
      filter: brightness(0.98) contrast(1.02);
    }
    .cert-gallery-strip img::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 10px;
      background: linear-gradient(145deg, rgba(255,255,255,0.4) 0%, transparent 50%);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .cert-gallery-strip img:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 
        0 4px 12px rgba(0,0,0,0.12),
        0 8px 24px rgba(43,156,153,0.15),
        0 0 0 1px rgba(43,156,153,0.2);
      filter: brightness(1) contrast(1.05);
      border-color: rgba(43,156,153,0.2);
    }
    @media (max-width: 767px) {
      .about-grid {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
      }
      .about-image-block {
        justify-content: center;
        align-items: stretch;
        height: auto;
        grid-row: 1;
        order: -1;
      }
      .about-lotus-img {
        max-width: 300px;
        /* height: 220px; */
        object-fit: cover;
        object-position: center top;
        margin: 0 auto;
        border-radius: 18px;
        display: block;
      }
      .cert-gallery-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        justify-items: center;
        align-items: center;
        gap: 0.75rem;
        overflow: hidden;
        margin-left: auto;
        margin-right: auto;
        scrollbar-width: none;
        max-width: 100%;
        padding: 1rem 0.75rem;
        background: linear-gradient(135deg, rgba(250,250,252,0.5) 0%, rgba(245,247,250,0.4) 100%);
        border-radius: 12px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(43,156,153,0.08);
      }
      .cert-gallery-strip::-webkit-scrollbar {
        display: none;
      }
      .cert-gallery-strip img {
        width: 135px;
        height: 95px;
        object-fit: cover;
        margin: 0 auto;
        border-radius: 8px;
        box-shadow: 
          0 1px 3px rgba(0,0,0,0.08),
          0 2px 6px rgba(43,156,153,0.06),
          0 0 0 1px rgba(255,255,255,0.5);
        background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(250,252,255,0.95) 100%);
        border: 1px solid rgba(43,156,153,0.1);
        filter: brightness(0.98) contrast(1.02);
      }
    }

    @media (max-width: 768px) {
  .about-lotus-effect {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 18px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .about-lotus-effect img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0.95) saturate(1.2);
    transition: transform 0.8s cubic-bezier(.25,.8,.25,1);
  }
  .about-lotus-effect::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,182,193,0.4) 0%, rgba(255,105,180,0.15) 100%);
    pointer-events: none;
    mix-blend-mode: screen;
    border-radius: 18px;
  }
  .about-lotus-effect img {
    animation: lotusPulse 3s infinite alternate;
  }
  @keyframes lotusPulse {
    0% { transform: scale(1); box-shadow: 0 0 10px 2px rgba(255,182,193,0.5); }
    100% { transform: scale(1.05); box-shadow: 0 0 20px 6px rgba(255,105,180,0.7); }
  }
}

.hamburger-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-right: 1em;
}

@media (min-width: 768px) {
  .hamburger-btn {
    display: none !important;
  }
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hamburger-icon span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  transition: background 0.2s;
}
/* Hamburger button and icon */
.hamburger-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  z-index: 12001;
}
.hamburger-btn.hide {
  opacity: 0;
  pointer-events: none;
}
.hamburger-btn:active {
  background: rgb(38, 139, 136);
}
.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hamburger-icon span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  transition: background 0.2s;
}

/* Overlay and sliding panel */
.menu-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(237,246,241, 0.97);
  z-index: 12000;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.menu-panel {
  background: var(--milk-color);
  width: 70%;
  height: 100vh;
  box-shadow: -2px 0 24px rgba(43,156,153,0.13);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-overlay.active .menu-panel {
  transform: translateX(0);
}

/* Menu list and links */
.menu-panel nav {
  width: 100%;
  margin-top: 1.3em;
}
.menu-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  text-align: right;
}
.menu-panel li {
  width: 100%;
}
.menu-panel a {
  color: var(--mobile-menu-fg-color);
  font-size: var(--fs24);
  font-weight: 700;
  text-decoration: none;
  padding: 0.2em 0.5em;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, text-decoration 0.2s;
  display: inline-block;
  text-align: right;
}
.menu-panel a:hover, .menu-panel a:active {
  background: rgba(43,156,153,0.07);
  color: rgb(38, 139, 136);
  text-decoration: underline;
}

/* Close button */
.menu-close-btn {
  background: rgba(243, 244, 246, 0.7);
  border: 1px solid rgba(209, 213, 219, 0.6);
  font-size: 2rem;
  color: #6b7280;
  cursor: pointer;
  position: absolute;
  top: 1.2rem;
  left: 2.2rem;
  z-index: 12002;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 300;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 
              0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-close-btn:hover {
  background: rgba(243, 244, 246, 1);
  color: #374151;
  border-color: rgba(209, 213, 219, 0.8);
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 
              0 2px 4px rgba(0, 0, 0, 0.06);
}

.menu-close-btn:active {
  transform: scale(0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .menu-close-btn {
    left: 1.2rem;
    top: 1.2rem;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}

.testimonials-section {
  margin-top: 0rem;
}

@media (max-width: 767px) {
  .testimonials-section {
    margin-top: 0rem;
  }
  .testimonials-section .section-title {
    margin-bottom: 0.8rem;
  }
  .testimonials-section .container {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }
}
.testimonials-scroll-btns {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}
.testimonial-scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,252,254,0.92) 100%);
  color: var(--accent-color);
  border: 1px solid rgba(43,156,153,0.15);
  box-shadow: 0 2px 8px rgba(43,156,153,0.08), 
              0 4px 16px rgba(0,0,0,0.04),
              0 0 0 1px rgba(43,156,153,0.06);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px) saturate(100%);
  -webkit-backdrop-filter: blur(12px) saturate(100%);
  position: relative;
  overflow: hidden;
}

.testimonial-scroll-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(43, 156, 153, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-scroll-btn:hover {
  background: linear-gradient(135deg, var(--accent-color) 0%, rgb(38, 139, 136) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43,156,153,0.18), 
              0 8px 24px rgba(0,0,0,0.08),
              0 0 0 1px rgba(43,156,153,0.15);
  border-color: rgba(43,156,153,0.25);
}

.testimonial-scroll-btn:hover::before {
  opacity: 1;
}

.testimonial-scroll-btn:active {
  transform: translateY(0px) scale(0.96);
  box-shadow: 0 2px 6px rgba(43,156,153,0.12), 
              0 4px 12px rgba(0,0,0,0.06);
}
.testimonials-board {
  display: flex;
  overflow-x: auto;
  gap: 6.5rem;
  scroll-behavior: smooth;
  cursor: grab;
  padding: 1.5rem 0.5rem 2rem 0.5rem;
  /* Hide scrollbar for Webkit browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  position: relative;
}

@media (max-width: 767px) {
  .testimonials-board {
    gap: 1.5rem;
    padding: 1rem 0.5rem 1.5rem 0.5rem;
  }
}
.testimonials-board::-webkit-scrollbar {
  display: none;
}

.testimonials-board:active {
  cursor: grabbing;
}


.testimonial-card:hover {
  animation: levitateWaveScaled 7s infinite;
  box-shadow: 0 12px 32px rgba(43,156,153,0.16), 
              0 4px 16px rgba(0,0,0,0.08),
              0 0 0 1px rgba(43,156,153,0.12);
  z-index: 2;
  border-color: rgba(43,156,153,0.25);
  transform: translateY(-4px);
}

.testimonial-card:hover::after {
  opacity: 0.08;
}


@keyframes fadeInTestimonial {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  width: 350px;
  height: 350px;
  flex: 0 0 350px;
  position: relative;
  /* Outer square - muted pastel pink background */
  background: #f5e6e8;
  border-radius: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* Animation for levitating and waving */
  animation: levitateWave 7s infinite;
  animation-delay: var(--levitate-delay, 0s);
  will-change: transform;
  padding: 36px;
}


/* Inner white square */
.testimonial-inner {
  width: 100%;
  height: 85%;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Testimonial text container */
.testimonial-text {
  flex: 1;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}

.testimonial-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--primary-color);
  margin: 0;
  white-space: pre-line;
  text-align: left;
}

/* Signature at bottom right corner of OUTER square */
.testimonial-signature {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0;
  font-family: 'Caveat', cursive;
  z-index: 10;
  margin-right: 1.5rem;
}

.testimonial-signature .signature-name {
  font-size: 18px;
  color: var(--primary-color);
  line-height: 1.1;
}

.testimonial-signature .signature-city {
  font-size: 18px;
  color: var(--primary-color);
  line-height: 1.1;
}

.testimonial-signature .signature-city::before {
  content: ', ';
}


/* Hover effects */
.testimonial-card:hover {
  animation: levitateWaveScaled 7s infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

/* Click hint - appears on hover */
.click-hint {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.click-hint i {
  font-size: 14px;
  color: #f5e6e8;
}

.testimonial-card:hover .click-hint {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 767px) {
  .click-hint {
    width: 28px;
    height: 28px;
    top: 12px;
    right: 12px;
  }
  
  .click-hint i {
    font-size: 12px;
  }
}

/* Subtle variations in pink tones for visual interest */
.testimonial-card:nth-child(odd) {
  background: #f5e6e8;
}

.testimonial-card:nth-child(even) {
  background: #f8eaec;
}

.testimonial-card:nth-child(3n) {
  background: #f2e3e6;
}

/* Removed old ::before and ::after effects for cleaner look */

@keyframes levitateWave {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  20% {
    transform: translateY(-8px) scale(1.005);
  }
  40% {
    transform: translateY(-2px) scale(1);
  }
  60% {
    transform: translateY(6px) scale(0.998);
  }
  80% {
    transform: translateY(2px) scale(1.002);
  }
}

@keyframes levitateWaveScaled {
  0%, 100% {
    transform: translateY(0px) scale(1.02);
  }
  20% {
    transform: translateY(-10px) scale(1.025);
  }
  40% {
    transform: translateY(-3px) scale(1.02);
  }
  60% {
    transform: translateY(8px) scale(1.018);
  }
  80% {
    transform: translateY(3px) scale(1.022);
  }
}

@media (max-width: 767px) {
  #testimonialLightboxImg {
    transform: scale(1.1);
  }

  #consentSurnamePlaceholder span,
  #consentPhonePlaceholder span,
  #consentEmailPlaceholder span {
    font-size: 0.65em;
  }
}

/* Mobile carousel for testimonials */
@media (max-width: 767px) {
  .testimonials-board {
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
    min-height: 240px;
  }
  .testimonial-card {
    flex: 0 0 340px;
    width: 340px;
    height: 340px;
  }

  .testimonial-card img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    object-position: top center;
  }

  .testimonial-card.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInTestimonial 0.5s;
  }
  .testimonials-scroll-btns {
    margin-top: 3.5rem;
  }
  .testimonial-scroll-btn {
    pointer-events: auto;
    background: rgba(43,156,153,0.85);
    box-shadow: 0 2px 8px rgba(43,156,153,0.18);
    font-size: 1.4rem;
    width: 42px;
    height: 42px;
    opacity: 0.95;
    border: none;
    transition: background 0.2s, transform 0.2s;
  }
  .testimonial-scroll-btn:active {
    background: rgb(38, 139, 136);
    transform: scale(1.08);
  }
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.8rem;
  }
  .testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1e6e5;
    transition: background 0.2s, transform 0.2s;
  }
  .testimonial-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
  }

  .testimonial-text p {
    font-size: 14px;
  }

  .testimonial-inner
  {
    padding: 28px 18px 28px 18px;
  }
}


@media (min-width: 768px) {
  #testimonialLightboxImg {
    transform: scale(1.4);
  }

  .testimonial-card.shifted
  {
    margin-top: 6em;
  }
}

#consentName::placeholder {
  color: gray;
  opacity: 1; 
}

.service-format {
  font-size: var(--fs13);
  color: #000;
  font-style: italic;
  border-radius: 8px;
  padding: 0.35em 1em;
  display: inline-block;
  margin: 0.5em auto 0.2em auto;
}
.service-format i {
  margin-right: 0.4em;
  opacity: 0.7;
}

.force-justify {
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}

@media (max-width: 767px) {
  .force-justify {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }
}

/* Crisis Content Section with Abstract Design */
.crisis-content-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(238, 226, 231, 0.25) 0%, rgba(254,251,251,0.85) 100%);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(43,156,153,0.08);
  border: 1.5px solid rgba(43,156,153,0.10);
}

.crisis-image-container {
  position: relative;
  width: 280px;
  height: 500px;
  overflow: hidden;
  background: transparent;
}

/* Abstract Design Element */
.crisis-abstract-design {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.abstract-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  mix-blend-mode: multiply;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(43, 156, 153, 0.25) 0%, rgba(43, 156, 153, 0.05) 70%);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

.shape-2 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(238, 226, 231, 0.6) 0%, rgba(238, 226, 231, 0.15) 70%);
  top: 35%;
  right: 8%;
  animation-delay: 2s;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(25, 116, 126, 0.2) 0%, rgba(25, 116, 126, 0.05) 70%);
  bottom: 20%;
  left: 12%;
  animation-delay: 4s;
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.shape-4 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(212, 244, 244, 0.7) 0%, rgba(212, 244, 244, 0.2) 70%);
  bottom: 12%;
  right: 15%;
  animation-delay: 6s;
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
}

.abstract-center-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(43, 156, 153, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(-10px, -15px) rotate(5deg) scale(1.05);
  }
  50% {
    transform: translate(10px, 10px) rotate(-5deg) scale(0.95);
  }
  75% {
    transform: translate(-5px, 15px) rotate(3deg) scale(1.02);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}

.crisis-image-container:hover .abstract-shape {
  animation-duration: 6s;
  opacity: 0.75;
}

.crisis-image-container:hover .abstract-center-glow {
  animation-duration: 4s;
}

.crisis-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2em;
}

.crisis-text-container p {
  font-size: var(--fs20);
  color: rgb(68, 68, 68);
  line-height: 1.75;
  text-align: justify;
  hyphens: auto;
  margin: 0;
  white-space: pre-line;
}

/* Responsive Design for Mobile */
@media (max-width: 767px) {
  .crisis-content-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    margin-top: 1.5rem;
  }

  .crisis-image-container {
    display: none;
  }

  .crisis-text-container p {
    font-size: var(--fs20);
    line-height: 1.7;
  }

  .abstract-shape {
    animation-duration: 6s;
  }

  .crisis-text-container {
    margin-top: 0;
  }
}

/* Tablet optimization */
@media (min-width: 768px) and (max-width: 1024px) {
  .crisis-content-wrapper {
    grid-template-columns: 240px 1fr;
    gap: 2rem;
  }

  .crisis-image-container {
    width: 240px;
    height: 420px;
  }
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .abstract-shape,
  .abstract-center-glow,
  .feelings-shape,
  .feelings-center-glow {
    animation: none;
  }
  
  .crisis-image-container:hover .abstract-shape,
  .crisis-image-container:hover .abstract-center-glow,
  .feelings-abstract-design:hover .feelings-shape,
  .feelings-abstract-design:hover .feelings-center-glow {
    animation: none;
  }
}

/* Mobile-friendly styling for zdravstvujte-menya-zovut-anna-levyina section */
@media (max-width: 767px) {
  #aboutWysiwyg[style*="font-size"] {
    font-size: var(--fs18) !important;
  }
  
  /* Target the specific div */
  [edicontent_id="zdravstvujte-menya-zovut-anna-levyina"] p {
    font-size: var(--fs16) !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
  }
  
   [edicontent_id="zdravstvujte-menya-zovut-anna-levyina"] p.normal-text  {
    font-size: var(--fs18) !important;
   }

  [edicontent_id="zdravstvujte-menya-zovut-anna-levyina"] h3 {
    font-size: var(--fs18) !important;
    margin-bottom: 0.8rem !important;
    margin-top: 0 !important;
  }
  
  [edicontent_id="zdravstvujte-menya-zovut-anna-levyina"] ul {
    margin: 0 0 1rem 0 !important;
    padding-left: 0.5rem !important;
    line-height: 1.5 !important;
  }
  
  [edicontent_id="zdravstvujte-menya-zovut-anna-levyina"] li {
    margin-bottom: 0.6rem !important;
    padding-left: 1.8rem !important;
    font-size: var(--fs14) !important;
    line-height: 1.5 !important;
  }
  
  [edicontent_id="zdravstvujte-menya-zovut-anna-levyina"] li i {
    font-size: 0.75rem !important;
    top: 0.25rem !important;
  }
  
  [edicontent_id="zdravstvujte-menya-zovut-anna-levyina"] li strong {
    display: inline-block;
    font-size: var(--fs13) !important;
  }
  
  /* Improve spacing for the pink about-panel on mobile */
  .about-text-block .about-panel.pink {
    padding: 1.2rem 1rem !important;
    margin-bottom: 1rem;
  }
  
}

/* Instagram Contact Block Styles */
.instagram-contact-block {
  display: inline-block;
  background: transparent;
  transition: all 0.3s ease;
}

.instagram-link-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.instagram-icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.instagram-icon-box i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.instagram-text {
  font-size: var(--fs16);
  color: var(--primary-color);
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.instagram-link-wrapper:hover .instagram-icon-box {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.25);
}

.instagram-link-wrapper:hover .instagram-icon-box i {
  color: #ffffff;
}

.instagram-link-wrapper:hover .instagram-text {
  color: var(--accent-color);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .instagram-contact-block {
    width: 100%;
    max-width: 300px;
  }
  
  .instagram-link-wrapper {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  
  .instagram-icon-box {
    width: 52px;
    height: 52px;
  }
  
  .instagram-icon-box i {
    font-size: 1.625rem;
  }
  
  .instagram-text {
    font-size: 1rem;
  }
}

/* Custom Psi Icon - sophisticated styling */
.psi-icon {
  display: inline-block;
  font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0 2px 8px rgba(43, 156, 153, 0.2);
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  font-size: 2.1rem;
  color: var(--accent-color);
}

.word-style-list li{
   margin-left: 1rem;
   list-style: none;
}

.word-style-list span:before{
  position: absolute;
  margin-left: -1rem;
  content: '-';
}