/* Main Styles */
:root {
    --primary: #e52323;
    --primary-dark: #c41e1e;
    --secondary: #333333;
    --text-dark: #333;
    --text-light: #666;
    --background: #fff;
    --background-cream: #fef9f2;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
  }
  
  body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-cream);
    font-weight: 400;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Common Button Styles */
  .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
  }
  
  .btn-secondary {
    background-color: var(--secondary);
    color: white;
    border: 2px solid var(--secondary);
  }
  
  .btn-secondary:hover {
    opacity: 0.9;
  }
  
  .btn-white {
    background-color: white;
    color: var(--primary);
    border: 2px solid white;
  }
  
  .btn-white:hover {
    background-color: transparent;
    color: white;
  }
  
  .btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .btn-outline:hover {
    background-color: white;
    color: var(--primary);
  }
  
  /* Section titles */
  .section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 0.5px;
  }