:root {
    --primary-color: rgb(189, 29, 58);
    --secondary-color: rgb(215, 129, 145);
    --background-gradient: linear-gradient(to left, #FFF, #FFC0CB);
    --text-color: rgb(240, 99, 99);
    --white-color: rgb(249, 235, 234);
    --shadow-color: rgba(218, 105, 105, 0.687);
  }
  
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  body {
    background: var(--background-gradient);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .logo {
    width: 16vw;
    height: 16vw;
    max-width: 180px;
    max-height: 180px;
    min-width: 90px;
    min-height: 90px;
    margin: 20px auto;
    position: relative;
    z-index: 1000;
    animation: slideInTop 1s ease-out forwards;
    border-radius: 50%;
    box-shadow: 0 8px 24px var(--shadow-color);
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
  }

  .logo:hover img {
    transform: scale(1.1);
  }

  .logo:hover {
    box-shadow: 0 12px 32px var(--shadow-color);
  }
  
  /* ———————————————————————————————— */
  /* Remove background & shadow from outer wrapper */
  .content-section {
    background: transparent !important;
    box-shadow: none !important;
    padding: 2rem;
    margin: 2rem auto;
    width: 90%;
    max-width: 1200px;
    box-sizing: border-box;
    animation: fadeIn 1s ease-out;
  }
  /* ———————————————————————————————— */
  
  .text-container {
    text-align: center;
    color: var(--primary-color);
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 24px var(--shadow-color);
  }
  
  .text-container h1 {
    font-size: 1.8rem;
    margin: 0;
  }
  
  .text-container p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px var(--shadow-color);
  }
  
  .buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Staggered animation for buttons */
  .btn {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* Fallback visibility */
    animation-fill-mode: both;
  }
  
  /* Fallback for browsers with animation issues */
  @supports not (animation: fadeInUp 0.8s ease) {
    .btn {
      opacity: 1;
      animation: none;
    }
  }
  
  /* Ensure buttons become visible after animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent
    );
    transition: left 0.6s ease;
    z-index: -1;
  }
  
  .btn:hover::before {
    left: 100%;
  }
  
  .btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px var(--shadow-color);
    background: var(--secondary-color);
    text-decoration: none;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Stagger animation delays for each button */
  .btn:nth-child(1) { 
    animation-delay: 0.6s; 
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  }
  .btn:nth-child(2) { 
    animation-delay: 0.7s; 
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  }
  .btn:nth-child(3) { 
    animation-delay: 0.8s; 
    background: linear-gradient(135deg, var(--primary-color), var(--text-color));
  }
  .btn:nth-child(4) { 
    animation-delay: 0.9s; 
    background: linear-gradient(135deg, var(--text-color), var(--secondary-color));
  }
  .btn:nth-child(5) { 
    animation-delay: 1.0s; 
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  }
  
  .btn,
  button:not(.chat-button):not(#chat-widget-btn):not(.action-btn):not(.close-btn) {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-align: center;
    font-size: 1.1rem;
    min-height: 40px;
    height: 40px;
    min-width: 160px;
    flex: 1 1 160px;
    box-sizing: border-box;
    margin: 0;
  }
  
  .buttons-container .btn {
    flex: 1 1 160px;
    margin: 0;
  }
  
  .btn:hover, .btn:focus,
  button:not(.chat-button):not(#chat-widget-btn):not(.action-btn):not(.close-btn):hover,
  button:not(.chat-button):not(#chat-widget-btn):not(.action-btn):not(.close-btn):focus {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px var(--shadow-color);
    background: var(--secondary-color);
    text-decoration: none;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .btn:hover::after,
  button:not(.chat-button):not(#chat-widget-btn):not(.action-btn):not(.close-btn):hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    animation: shimmer 2s linear infinite;
    z-index: -1;
  }
  
  .btn:active,
  button:not(.chat-button):not(#chat-widget-btn):not(.action-btn):not(.close-btn):active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 12px rgba(189, 29, 58, 0.3);
    transition: all 0.1s ease;
  }
  
  .btn:last-child {
    margin-bottom: 1.5rem;
  }
  
  
  
  .btn:hover::before {
    left: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent
    );
  }
  
  
  
  /* Mobile tap effect for buttons */
  .btn:active,
  button:not(.chat-button):not(#chat-widget-btn):not(.action-btn):not(.close-btn):active {
    background: var(--secondary-color);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px var(--shadow-color);
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    .logo {
      width: 35vw;
      height: 35vw;
      min-width: 90px;
      min-height: 90px;
    }
    .content-section {
      width: 98vw;
      padding: 1rem;
      margin: 1rem 0;
      /* border-radius removed */
    }
    .buttons-container {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
      width: 100%;
      box-sizing: border-box;
      margin: 0 auto 2.5rem auto;
    }
    .buttons-container .btn {
      width: 100%;
      min-width: 0;
      box-sizing: border-box;
      box-shadow: 0 4px 12px var(--shadow-color);
      height: 40px;
      min-height: 40px;
      flex: none;
    }
  }
  
  @media (max-width: 480px) {
    .logo {
      width: 45vw;
      height: 45vw;
      min-width: 70px;
      min-height: 70px;
    }
    .content-section {
      width: 100vw;
      padding: 0.5rem;
      margin: 0.5rem 0;
    }
  }
  
  .disclaimer {
    text-align: center;
    color: var(--primary-color);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -4px 12px var(--shadow-color);
    backdrop-filter: blur(5px);
    z-index: 900;
  }
  
  @keyframes slideInTop {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes buttonPulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  @keyframes shimmer {
    0% {
      background-position: -200% center;
    }
    100% {
      background-position: 200% center;
    }
  }

  @keyframes smoothGlow {
    0%, 100% {
      box-shadow: 0 8px 20px var(--shadow-color);
      transform: translateY(-2px) scale(1.05);
    }
    50% {
      box-shadow: 0 12px 30px var(--shadow-color);
      transform: translateY(-3px) scale(1.08);
    }
  }
  