:root {
    --primary-color: #da042a;
    --primary-color-dark: #c00427;
    --secondary-color: #15151f;
    --secondary-color-dark: #0a0b0f;
    --text-light: #6b7280;
    --extra-light: #f8f7fd;
    --white: #ffffff;
    --max-width: 1200px;
  }
  
  /* Reset some default styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--extra-light);
    color: var(--secondary-color);
    line-height: 1.6;
    padding: 2em 1em;
  }
  
  .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1em;
  }
  
  /* Section Styling */
  .service-section {
    background-color: var(--white);
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }
  
  /* Headings */
  .service-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .service-section h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    color: var(--secondary-color-dark);
  }
  
  /* List Styling */
  .service-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
  }
  
  .service-section ul li {
    margin-bottom: 0.5em;
    padding-left: 1.2em;
    position: relative;
  }
  
  .service-section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-color);
  }
  
  /* Button Styling */
  .btn-book-now {
    display: inline-block;
    margin-top: 1.5em;
    padding: 0.75em 2em;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btn-book-now:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
  }
  