/* Shared global styles for all pages */

/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /* Layout */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
  }
  
  header .logo {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 10px;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
  }
  
  /* Hero sections */
  .hero {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .hero p {
    font-size: 20px;
    max-width: 700px;
  }
  
  /* Sections */
  section {
    padding: 60px 0;
  }
  section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  section p {
    font-size: 18px;
    max-width: 800px;
    margin-bottom: 20px;
  }
  
  /* Buttons */
  .btn {
    background: #000;
    color: #fff;
    padding: 12px 26px;
    display: inline-block;
    border-radius: 4px;
    font-size: 16px;
    transition: 0.2s ease;
  }
  .btn:hover {
    background: #444;
  }
  
  /* Footer */
  footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 60px;
    color: #555;
    font-size: 14px;
  }
  