:root {
        --color1: #d5a5a6;
        --color2: #cab3b0;
        --color3: #125251;
        --color4: #598673;
        --color5: #b2bfb1;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: system-ui, -apple-system, sans-serif;
        color: var(--color3);
        line-height: 1.6;
        overflow-x: hidden;
      }

      .decorative-circle {
        position: absolute;
        border-radius: 50%;
        opacity: 0.6;
      }

      .decorative-line {
        position: absolute;
        background: var(--color5);
        opacity: 0.3;
      }

      .section-divider {
        width: 100%;
        height: 2px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--color5),
          transparent
        );
      }

      .hover-lift {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(18, 82, 81, 0.15);
      }

      .geometric-bg {
        position: relative;
        overflow: hidden;
      }

      .geometric-bg::before {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        background: var(--color5);
        opacity: 0.1;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        animation: morph 8s ease-in-out infinite;
      }

      @keyframes morph {
        0%,
        100% {
          border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        }
        50% {
          border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        }
      }

      .zigzag-pattern {
        background-image: linear-gradient(
            135deg,
            var(--color5) 25%,
            transparent 25%
          ),
          linear-gradient(225deg, var(--color5) 25%, transparent 25%);
        background-position: 0 0, 20px 0;
        background-size: 40px 40px;
        background-repeat: repeat-x;
        height: 40px;
        opacity: 0.3;
      }

      .notification-form {
        background: white;
        border: 2px solid var(--color5);
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(18, 82, 81, 0.1);
      }

      input,
      textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid var(--color5);
        border-radius: 4px;
        font-size: 1rem;
        transition: border-color 0.3s;
      }

      input:focus,
      textarea:focus {
        outline: none;
        border-color: var(--color3);
      }

      button {
        background: var(--color3);
        color: white;
        padding: 0.75rem 2rem;
        border: none;
        border-radius: 4px;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
      }

      button:hover {
        background: var(--color4);
        transform: scale(1.05);
      }

      .image-frame {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
      }

      .image-frame::after {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border: 3px solid var(--color1);
        border-radius: 8px;
        pointer-events: none;
      }

      .split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }

      @media (max-width: 768px) {
        .split-layout {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
      }

      .stats-number {
        font-size: 3rem;
        font-weight: bold;
        color: var(--color1);
        line-height: 1;
      }

      .floating-element {
        animation: float 6s ease-in-out infinite;
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-20px);
        }
      }
