/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
    padding: 2rem;
  }
  
  /* Header */
  header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  header h1 {
    font-size: 2.5rem;
    color: #000;
  }
  
  .tagline {
    font-style: italic;
    color: #990024;
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }
  
  /* Sections */
  section {
    margin-bottom: 3rem;
  }
  
  h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #000;
  }
  
  .services ul {
    list-style: square;
    padding-left: 1.5rem;
  }
  
  .services li {
    margin-bottom: 0.5rem;
  }
  
  /* About Section */
  .about p {
    max-width: 700px;
    margin-top: 0.5rem;
  }
  
  /* Contact Form */
  form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin-top: 1rem;
  }
  
  label {
    margin-bottom: 0.25rem;
    font-weight: bold;
  }
  
  input,
  textarea {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  button {
    padding: 0.75rem;
    background-color: #990024;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  
  button:hover {
    background-color: #B20059;
  }
  
  /* Footer */
  footer {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 4rem;
    color: #777;
  }
  