/* General Styles */
body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafb;
    color: #333;
    line-height: 1.8;
    font-size: 16px;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Header Section */
  .site-header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 60px 20px;
  }
  
  .site-header h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .site-header .tagline {
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 300;
    opacity: 0.9;
  }
  
  /* Content Section */
  .content-section {
    margin-bottom: 50px;
    text-align: left;
  }
  
  .content-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
  }
  
  .content-section ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .content-section ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    padding-left: 25px;
    position: relative;
  }
  
  .content-section ul li::before {
    content: "✔";
    color: #16a085;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  /* Call-to-Action Section */
  .cta-section {
    text-align: center;
    background-color: #ecf0f1;
    color: #333;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #555;
  }
  
  .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #16a085;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .cta-button:hover {
    background-color: #1abc9c;
    transform: translateY(-2px);
  }
  
  /* Footer Section */
  .site-footer {
    background-color: #2c3e50;
    color: #bbb;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .site-footer a {
    color: #16a085;
    text-decoration: none;
  }
  
  .site-footer a:hover {
    text-decoration: underline;
  }