/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  /* Header */
  header {
    background-color: #f4f4f4;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  header .logo img {
    max-width: 55%; /* Adjust based on your logo */
    height: auto;
  }
  
  header .menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  header .menu li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  header .menu li a:hover {
    color: #0073e6;
  }
  
  /* Body */
  main {
    max-width: 75%; /* Constrain the width */
    margin: 2rem auto; /* Center content */
    padding: 1rem;
    background-color: #f4f4f4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 8px; /* Rounded corners */
  }
  
  main .content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
  }
  
  main .content p {
    font-size: 1rem;
    line-height: 1.8;
  }

  main .tunertitle h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
  }
  
  main .tunertitle p {
    font-size: 0.8rem;
    line-height: 1.8;
  }
  
  /* Footer */
  footer {
    background-color: #f4f4f4;
    border-top: 1px solid #ddd;
    text-align: center;
    padding: 1rem 0;
  }
  
  footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  footer p {
    font-size: 0.9rem;
    color: #555;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    header .menu {
      margin-top: 0.5rem;
    }
  
    main {
      width: 90%;
    }
  }
  
  @media (max-width: 480px) {
    header .menu {
      flex-direction: column;
      gap: 1rem;
    }
  
    header .logo img {
      max-height: 40px;
    }
  }
  