/* Global Reset (optional) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Arial", sans-serif;
    color: #333;
    background-color: #f9f9f9;
  }
  
  /* Hero Section */
  .hero-section {
    background-color: #68c0ad; /* Adjust to match the teal background from your image */
    text-align: center;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Main Heading */
  .hero-section h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  /* Subheading */
  .subheading {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
  }
  
  /* Description Paragraph */
  .description {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #fff;
  }
  
  /* Product Image Container */
  .product-image-container {
    margin-bottom: 40px;
  }
  
  .product-image {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  /* Call-To-Action Button */
  .cta-button {
    display: inline-block;
    background-color: #ff4141; /* A bright red for contrast */
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e63c3c;
  }
  /* Footer Section */
.footer-section {
    background-color: #ffffff; /* or a very light gray if you prefer */
    padding: 20px;
    text-align: center;
  }
  
  .footer-content {
    max-width: 800px;
    margin: 0 auto;
    color: #666; /* Slightly gray text for disclaimers */
    font-size: 0.85rem; /* Smaller font size for disclaimers */
    line-height: 1.4;
  }
  
  /* Adjust link styles as you see fit */
  .footer-links a {
    color: #666;
    text-decoration: underline;
    margin: 0 5px;
  }
  
  .footer-links a:hover {
    color: #333;
    text-decoration: none;
  }
  
  /* Small text styling */
  .footer-section p {
    margin-bottom: 10px;
    margin-top: 10px;
  }
  
  .footer-section p strong {
    font-weight: bold;
  }
  
  copyright {
    font-size: 0.75rem;
  }
/* Disclaimer Section */
.disclaimer-section {
    background-color: #f5f5f5;  /* Light background for contrast */
    padding: 20px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
  }
  
  .disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  .disclaimer-content p {
    margin-bottom: 15px;
  }
  
  /* Style for the small print disclaimer */
  .disclaimer-content .small-print {
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
  }
    