:root {
    --primary: #d62828;
    --dark: #333;
    --light: #f9f9f9;
  }
  body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
  }
  header {
    background-color: var(--dark);
    color: white;
    padding: 1rem;
  }
  header .topbar {
    background: var(--primary);
    padding: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
  }
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
  }
  nav a {
    color: white;
    text-decoration: none;
    margin: 0 0.75rem;
    font-weight: bold;
  }
  .hero {
    background: url('https://cdn.pixabay.com/photo/2015/12/01/20/28/road-1072823_960_720.jpg') no-repeat center center/cover;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
  }
  .hero h1 {
    font-size: 2rem;
    color: var(--primary);
  }
  .section {
    padding: 2rem 1rem;
    max-width: 1100px;
    margin: auto;
  }
  .section:nth-child(even) {
    background: var(--light);
  }
  .cta {
    background: linear-gradient(to right, #d62828, #f77f00);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
  }
  .cta h2 {
    margin-bottom: 1rem;
  }
  .cta button {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary);
    border: none;
    font-weight: bold;
    cursor: pointer;
  }
  footer {
    background: var(--dark);
    color: white;
    padding: 1rem;
    text-align: center;
  }
  .highlight {
    color: var(--primary);
    font-weight: bold;
  }