    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      height: 100%;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #fafaf9;
      color: #292524;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
      min-height: 100%;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #fafaf9;
    }
    ::-webkit-scrollbar-thumb {
      background: #d6d3d1;
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: #a8a29e;
    }

    /* Utility classes */
    .container {
      width: 100%;
      max-width: 896px;
      margin: 0 auto;
      padding: 0 16px;
      box-sizing: border-box;
    }

    @media (min-width: 768px) {
      .container {
        padding: 0 32px;
      }
    }

    .section {
      margin-bottom: 80px;
    }

    @media (min-width: 768px) {
      .section {
        margin-bottom: 128px;
      }
    }

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

    .font-serif {
      font-family: 'Cormorant Garamond', serif;
    }

    .uppercase {
      text-transform: uppercase;
    }

    .tracking-wide {
      letter-spacing: 0.025em;
    }

    .tracking-wider {
      letter-spacing: 0.05em;
    }

    .tracking-widest {
      letter-spacing: 0.1em;
    }

    /* Hero Section */
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 40px;
    }

    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 32px;
      color: #000000;
    }

    @media (min-width: 768px) {
      .hero-subtitle {
        font-size: 48px;
      }
    }

    .hero-photos {
      position: relative;
      width: 100%;
      max-width: 600px;
      height: 280px;
      margin-bottom: 48px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .hero-photos {
        height: 380px;
      }
    }

    .hero-photo {
      position: absolute;
      background: white;
      padding: 12px;
      padding-bottom: 32px;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      transition: transform 0.5s;
    }

    .hero-photo:hover {
      transform: scale(1.05);
    }

    .hero-photo-left {
      left: 40%;
      transform: translateX(-60%) rotate(-6deg);
    }

    .hero-photo-left:hover {
      transform: translateX(-60%) rotate(-8deg) scale(1.05);
    }

    @media (min-width: 768px) {
      .hero-photo-left {
        transform: translateX(-55%) rotate(-6deg);
      }
      .hero-photo-left:hover {
        transform: translateX(-55%) rotate(-8deg) scale(1.05);
      }
    }

    .hero-photo-right {
      left: 40%;
      transform: translateX(5%) rotate(6deg);
      top: 16px;
    }

    .hero-photo-right:hover {
      transform: translateX(5%) rotate(8deg) scale(1.05);
    }

    .hero-photo img {
      width: 160px;
      height: 200px;
      object-fit: cover;
    }

    @media (min-width: 768px) {
      .hero-photo img {
        width: 240px;
        height: 300px;
      }
      
      .hero-photo > div {
        width: 240px !important;
        height: 300px !important;
      }
    }

    .hero-photo-label {
      text-align: center;
      margin-top: 8px;
      color: #a8a29e;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 18px;
    }

    .hero-heart {
      position: absolute;
      bottom: 10%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 30;
      width: 80px;
      height: 80px;
      object-fit: contain;
      animation: heartbeat 2.5s ease-in-out infinite;
    }

    @keyframes heartbeat {
      0%, 100% {
        transform: translate(-50%, -50%) scale(1);
      }
      50% {
        transform: translate(-50%, -50%) scale(1.15);
      }
    }

    .hero-title {
      text-align: center;
      margin-bottom: 32px;
    }

    .hero-title h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      text-transform: uppercase;
      letter-spacing: 0.025em;
      color: #292524;
      margin-bottom: 16px;
    }

    @media (min-width: 768px) {
      .hero-title h1 {
        font-size: 48px;
      }
    }

    .hero-title p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      color: #78716c;
    }

    @media (min-width: 768px) {
      .hero-title p {
        font-size: 30px;
      }
    }

    /* Music Player */
    .music-trigger {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .music-trigger:hover .music-button {
      transform: scale(1.1);
    }

    .music-button {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid #292524;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s;
    }

    .music-button svg {
      width: 16px;
      height: 16px;
    }

    .music-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #78716c;
    }

    /* Invitation Section */
    .invitation {
      text-align: center;
      margin-bottom: 48px;
    }

    .invitation h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #292524;
      margin-bottom: 24px;
    }

    @media (min-width: 768px) {
      .invitation h2 {
        font-size: 30px;
      }
    }

    .invitation-text {
      color: #000000; 
      font-weight: 300;
      font-size: 16px;
      line-height: 1.75;
      max-width: 640px;
      margin: 0 auto 24px;
    }

    @media (min-width: 768px) {
      .invitation-text {
        font-size: 18px;
      }
    }

    .invitation-text p {
      margin-bottom: 16px;
    }

    .calendar {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 48px;
    }

    .calendar h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 24px;
      color: #292524;
    }

    .calendar-grid {
      width: 100%;
      max-width: 320px;
    }

    .calendar-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      margin-bottom: 16px;
    }

    .calendar-weekday {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      color: #78716c;
    }

    .calendar-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 8px 8px;
    }

    .calendar-day {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 32px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      color: #44403c;
    }

    .calendar-day.highlight {
      font-weight: 700;
      color: #1c1917;
    }

    .calendar-day.highlight::after {
      content: '';
      position: absolute;
      top: 58%;
      left: 50%;
      width: 40px;
      height: 40px;
      background-image: url('../img/heart_outline.svg');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      transform: translate(-50%, -45%);
      pointer-events: none;
      animation: calendar-heartbeat 2.5s ease-in-out infinite;
    }

    @keyframes calendar-heartbeat {
      0%, 100% {
        transform: translate(-50%, -45%) scale(1);
      }
      50% {
        transform: translate(-50%, -45%) scale(1.15);
      }
    }

    /* Location Section */
    .location {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      max-width: 448px;
      width: 100%;
      margin: 0 auto;
      border: 2px solid #000000;
      border-radius: 10px;
      padding: 24px;
      background: white;
    }

    .location-photo {
      width: 100%;
      overflow: hidden;
      border-radius: 12px;
    }

    .location-photo img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    .location-info {
      width: 100%;
    }

    .location-info h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #000000;
      font-weight: 400;
      margin-bottom: 16px;
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .location-info h2 {
        font-size: 34px;
      }
    }

    .location-address {
      color: #000000;
      font-weight: 300;
      font-size: 18px;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .location-address {
        font-size: 16px;
      }
    }

    .location-address-label {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #000000;
      margin-bottom: 8px;
      font-weight: 300;
    }

    .location-address-name {
      font-weight: 400;
      margin-bottom: 4px;
      color: #000000;
    }

    .location-map-button {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      border: 1px solid #000000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #000000;
      text-decoration: none;
      transition: all 0.3s;
      background: white;
      margin-top: 8px;
    }

    .location-map-button:hover {
      background-color: #000000;
      color: white;
    }

    /* Gallery Section */
    .gallery {
      position: relative;
      height: 500px;
      width: 100%;
      max-width: 672px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    .gallery-photo {
      position: absolute;
      background: white;
      padding: 12px;
      padding-bottom: 32px;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .gallery-photo-1 {
      top: 0;
      left: 16px;
      transform: rotate(-6deg);
      z-index: 10;
      width: 224px;
    }

    @media (min-width: 768px) {
      .gallery-photo-1 {
        left: 80px;
        width: 256px;
      }
    }

    .gallery-photo-1 img {
      width: 100%;
      height: auto;
      filter: grayscale(20%);
    }

    .gallery-photo-2 {
      bottom: 0;
      right: 16px;
      transform: rotate(3deg);
      z-index: 20;
      width: 224px;
    }

    @media (min-width: 768px) {
      .gallery-photo-2 {
        right: 80px;
        width: 256px;
      }
    }

    .gallery-photo-2 img {
      width: 100%;
      height: auto;
      filter: grayscale(20%);
    }

    .gallery-initials {
      position: absolute;
      top: 40px;
      right: 40px;
      z-index: 0;
      opacity: 0.2;
      pointer-events: none;
    }

    @media (min-width: 768px) {
      .gallery-initials {
        right: 128px;
      }
    }

    .gallery-initials span {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 144px;
    }

    .gallery-text {
      position: absolute;
      bottom: 40px;
      left: 40px;
      z-index: 30;
      transform: rotate(-12deg);
    }

    @media (min-width: 768px) {
      .gallery-text {
        left: 80px;
      }
    }

    .gallery-text p {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 24px;
      color: #78716c;
    }

    @media (min-width: 768px) {
      .gallery-text p {
        font-size: 30px;
      }
    }

    /* Program Section */
    .program {
      margin-bottom: 48px;
    }

    .program h2 {
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #292524;
      margin-bottom: 48px;
    }

    @media (min-width: 768px) {
      .program h2 {
        font-size: 36px;
      }
    }

    .program-items {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }

    .program-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
      position: relative;
    }

    .program-item-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 1px solid #d6d3d1;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
      background: white;
      z-index: 10;
    }

    .program-item-icon svg {
      width: 20px;
      height: 20px;
      color: #292524;
    }

    .program-item::after {
      content: '';
      position: absolute;
      top: 56px;
      bottom: -40px;
      width: 1px;
      background: #e7e5e4;
      z-index: 0;
    }

    .program-item:last-child::after {
      display: none;
    }

    .program-item-time {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 20px;
      color: #292524;
    }

    .program-item-title {
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 14px;
      font-weight: 500;
      color: #44403c;
    }

    .program-item-desc {
      font-size: 12px;
      color: #78716c;
      font-weight: 300;
      max-width: 200px;
    }

    /* Dress Code Section */
    .dresscode {
      text-align: center;
      margin-bottom: 40px;
    }

    .dresscode h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #292524;
      margin-bottom: 16px;
    }

    @media (min-width: 768px) {
      .dresscode h2 {
        font-size: 36px;
      }
    }

    .dresscode-text {
      color: #78716c;
      font-weight: 300;
      font-size: 14px;
      max-width: 640px;
      margin: 0 auto 40px;
    }

    @media (min-width: 768px) {
      .dresscode-text {
        font-size: 16px;
      }
    }

    .dresscode-colors {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 40px;
    }

    @media (min-width: 768px) {
      .dresscode-colors {
        gap: 24px;
      }
    }

    .dresscode-color {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    @media (min-width: 768px) {
      .dresscode-color {
        width: 64px;
        height: 64px;
      }
    }

    .dresscode-color-1 {
      background-color: #4a4e4d;
    }

    .dresscode-color-2 {
      background-color: #3e3b32;
    }

    .dresscode-color-3 {
      background-color: #d1d5db;
    }

    .dresscode-color-4 {
      background-color: #bcaaa4;
    }

    .dresscode-examples {
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    .dresscode-example {
      width: 144px;
      height: 256px;
      background: #e7e5e4;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .dresscode-example {
        width: 192px;
        height: 320px;
      }
    }

    .dresscode-example img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.9;
      transition: opacity 0.3s;
    }

    .dresscode-example:hover img {
      opacity: 1;
    }

    /* Details Section */
    .details {
      width: 100%;
      background-color: #4a4e4d;
      color: #e7e5e4;
      padding: 48px 16px;
      border-radius: 2px;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    @media (min-width: 768px) {
      .details {
        padding: 48px 48px;
      }
    }

    .details-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }

    @media (min-width: 768px) {
      .details-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
      }
    }

    .details-item {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .details-item h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: white;
      border-bottom: 1px solid #78716c;
      padding-bottom: 8px;
      margin-bottom: 8px;
      display: inline-block;
    }

    .details-item p {
      font-size: 12px;
      font-weight: 300;
      line-height: 1.75;
      opacity: 0.9;
    }

    @media (min-width: 768px) {
      .details-item p {
        font-size: 14px;
      }
    }

    /* Chat Section */
    .chat {
      text-align: center;
      margin-bottom: 40px;
    }

    .chat h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #292524;
      margin-bottom: 24px;
    }

    @media (min-width: 768px) {
      .chat h2 {
        font-size: 36px;
      }
    }

    .chat-text {
      max-width: 640px;
      margin: 0 auto;
      color: #78716c;
      font-weight: 300;
      font-size: 14px;
      margin-bottom: 16px;
    }

    @media (min-width: 768px) {
      .chat-text {
        font-size: 16px;
      }
    }

    .chat-text p {
      margin-bottom: 8px;
    }

    .chat-icon {
      height: 64px;
      margin: 16px auto;
    }

    .chat-button {
      display: inline-block;
      border: 1px solid #292524;
      border-radius: 9999px;
      padding: 12px 48px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #292524;
      text-decoration: none;
      transition: all 0.3s;
    }

    .chat-button:hover {
      background-color: #292524;
      color: white;
    }

    /* RSVP Section */
    .rsvp {
      width: 100%;
      max-width: 672px;
      margin: 0 auto;
      border: 1px solid #292524;
      padding: 48px 32px;
      position: relative;
      background: white;
    }

    @media (min-width: 768px) {
      .rsvp {
        padding: 48px;
      }
    }

    .rsvp-title {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      padding: 0 16px;
    }

    .rsvp-title h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #292524;
      white-space: nowrap;
    }

    @media (min-width: 768px) {
      .rsvp-title h2 {
        font-size: 24px;
      }
    }

    .rsvp-form {
      margin-top: 16px;
      text-align: center;
    }

    .rsvp-form-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #78716c;
      display: block;
      margin-bottom: 8px;
      text-align: left;
    }

    .rsvp-form-input {
      width: 100%;
      max-width: 384px;
      margin: 0 auto 32px;
      border-bottom: 1px solid #d6d3d1;
      padding: 8px 0;
      background: transparent;
      border-top: none;
      border-left: none;
      border-right: none;
      font-family: inherit;
      font-size: 14px;
      color: #292524;
      transition: border-color 0.3s;
    }

    .rsvp-form-input:focus {
      outline: none;
      border-bottom-color: #292524;
    }

    .rsvp-form-radio-group {
      max-width: 384px;
      margin: 0 auto 32px;
      text-align: left;
    }

    .rsvp-form-radio {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
      cursor: pointer;
    }

    .rsvp-form-radio input[type="radio"] {
      display: none;
    }

    .rsvp-form-radio-circle {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 1px solid #a8a29e;
      transition: all 0.3s;
      position: relative;
    }

    .rsvp-form-radio input[type="radio"]:checked + .rsvp-form-radio-circle {
      background-color: #292524;
      border-color: #292524;
    }

    .rsvp-form-radio:hover .rsvp-form-radio-circle {
      border-color: #78716c;
    }

    .rsvp-form-radio span {
      font-size: 14px;
      font-weight: 300;
      color: #44403c;
    }

    .rsvp-form-submit {
      margin-top: 32px;
      background: black;
      color: white;
      padding: 12px 40px;
      border-radius: 9999px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .rsvp-form-submit:hover {
      background: #292524;
      transform: scale(1.05);
    }

    /* Footer */
    .footer {
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 64px;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .footer-contacts h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #292524;
      margin-bottom: 16px;
    }

    .footer-contacts-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: #78716c;
      font-weight: 300;
      font-size: 14px;
    }

    .footer-contacts-icon {
      width: 20px;
      height: 20px;
      margin-bottom: 8px;
    }

    .footer-countdown {
      position: relative;
      width: 100%;
      max-width: 384px;
      margin: 0 auto;
    }

    .footer-countdown-photo {
      background: white;
      padding: 12px;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      transform: rotate(2deg);
      width: 192px;
      margin: 0 auto 32px;
    }

    @media (min-width: 768px) {
      .footer-countdown-photo {
        width: 224px;
      }
    }

    .footer-countdown-photo img {
      width: 100%;
      height: auto;
      filter: grayscale(100%);
    }

    .footer-countdown-info {
      margin-bottom: 32px;
    }

    .footer-countdown-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #78716c;
      margin-bottom: 16px;
    }

    .footer-countdown-timer {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      letter-spacing: 0.1em;
      color: #292524;
      margin-bottom: 16px;
    }

    @media (min-width: 768px) {
      .footer-countdown-timer {
        font-size: 48px;
      }
    }

    .footer-countdown-labels {
      display: flex;
      justify-content: center;
      gap: 24px;
      font-size: 10px;
      text-transform: uppercase;
      color: #a8a29e;
      letter-spacing: 0.1em;
    }

    .footer-countdown-labels span {
      width: 32px;
    }

    .footer-initials {
      margin-top: 32px;
      opacity: 0.3;
    }

    .footer-initials span {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 36px;
    }

    .footer-button {
      background: black;
      color: white;
      padding: 12px 40px;
      border-radius: 9999px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .footer-button:hover {
      background: #292524;
    }

    .footer-back {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #a8a29e;
    }

    /* Main container */
    .main {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 8px 16px;
      width: 100%;
      box-sizing: border-box;
    }

    @media (min-width: 768px) {
      .main {
        padding: 16px 32px;
      }
    }

    /* Scroll Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s ease-out, transform 1s ease-out;
    }

    .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in-down {
      opacity: 0;
      transform: translateY(-40px);
      transition: opacity 1s ease-out, transform 1s ease-out;
    }

    .fade-in-down.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-in-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .fade-in-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-in-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .scale-in {
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .scale-in.visible {
      opacity: 1;
      transform: scale(1);
    }

    /* Delay classes for staggered animations */
    .delay-100 {
      transition-delay: 0.1s;
    }

    .delay-200 {
      transition-delay: 0.2s;
    }

    .delay-300 {
      transition-delay: 0.3s;
    }

    .delay-400 {
      transition-delay: 0.4s;
    }

    .delay-500 {
      transition-delay: 0.5s;
    }

    .delay-600 {
      transition-delay: 0.6s;
    }


