/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
      sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  /* Main Container */
  .main-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f3e8ff 0%, #fdf2f8 50%, #dbeafe 100%);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
  }
  
  /* Hero Section */
  .hero-section {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .logo-container {
    margin-bottom: 2rem;
  }
  
  .logo {
    height: 8rem;
    width: auto;
    object-fit: contain;
  }
  
  .main-quote {
    font-size: 1.5rem;
    font-weight: 300;
    color: #374151;
    line-height: 1.4;
    max-width: 64rem;
    margin: 0 auto 3rem;
  }
  
  .blessing {
    font-weight: 600;
  }
  
  .quote-author {
    font-size: 1.125rem;
    color: #6b7280;
    margin-top: 1rem;
    display: block;
  }
  
  /* Content Card */
  .content-card {
    max-width: 64rem;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
  }
  
  .content-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
  }
  
  .content-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
  }
  
  .content-text p {
    margin-bottom: 1.5rem;
  }
  
  .closure-date {
    color: #dc2626;
  }
  
  .signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
  }
  
  .signature-text {
    text-align: right;
    font-style: italic;
    margin-bottom: 0;
  }
  
  .signature-title {
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  /* Contact Section */
  .contact-section {
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 2rem;
  }
  
  .whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #10b981;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    transform: scale(1);
  }
  
  .whatsapp-button:hover {
    background-color: #059669;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
  }
  
  .whatsapp-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .whatsapp-text {
    font-size: 1.125rem;
  }
  
  /* Scroll to Top Button */
  .scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #2563eb;
    color: white;
    padding: 0.75rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    opacity: 0.8;
    transition: all 0.2s ease;
  }
  
  .scroll-top-btn:hover {
    background-color: #1d4ed8;
    opacity: 1;
  }
  
  .scroll-icon {
    width: 1.25rem;
    height: 1.25rem;
    transform: rotate(180deg);
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .container {
      padding: 3rem 2rem;
    }
  
    .content-card {
      padding: 3rem;
    }
  
    .main-quote {
      font-size: 1.875rem;
    }
  
    .content-title {
      font-size: 1.875rem;
    }
  
    .contact-title {
      font-size: 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .main-quote {
      font-size: 2.25rem;
    }
  
    .content-title {
      font-size: 1.875rem;
    }
  }
  
  @media (max-width: 767px) {
    .container {
      padding: 1.5rem 1rem;
    }
  
    .content-card {
      padding: 1.5rem;
    }
  
    .main-quote {
      font-size: 1.25rem;
    }
  
    .logo {
      height: 6rem;
    }
  
    .scroll-top-btn {
      bottom: 1rem;
      right: 1rem;
      padding: 0.5rem;
    }
  
    .scroll-icon {
      width: 1rem;
      height: 1rem;
    }
  }
  