:root {
    --primary: #ee1515;
    --primary-light: #7C3AED;
    --secondary: #DC2626;
    --background: #F3F4F6;
    --text: #1F2937;
    --card-bg: #FFFFFF;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #222;
    color: var(--text);
    line-height: 1.6;
  }
  
  .footer-links {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #333;
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-evenly;
  }
  
  .footer-links a {
    color: var(--header-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  
  .footer-links a:hover {
    color: #bd0a0a;
  }
  
  .about-container {
    max-width: 1000px;
    margin: 7rem auto 2rem;
    padding: 0 2rem;
  }
  
  .about-section {
    background: #333;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
  }
  
  .about-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .about-title {
    font-size: 2.5rem;
    color: var(--header-color);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .about-subtitle {
    font-size: 1.2rem;
    color: #b3b3b3;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .feature-card {
    padding: 1.5rem;
    background: #444;
    border-radius: 0.75rem;
    transition: transform 0.2s;
  }
  
  .feature-card:hover {
    transform: translateY(-2px);
  }
  
  .feature-icon {
    color: var(--header-color);
    margin-bottom: 1rem;
  }
  
  .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
  }
  
  .feature-description {
    color: #b3b3b3;
    line-height: 1.6;
  }
  
  .about-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(to right, var(--header-color), #bd0a0a);
    border-radius: 1rem;
    color: white;
  }
  
  .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  /* New button styles */
  .btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color: #333;
    color: var(--header-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  }
  
  .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 768px) {
    .feature-grid {
      grid-template-columns: 1fr;
    }
    
    .about-title {
      font-size: 2rem;
    }
    
    .cta-title {
      font-size: 1.75rem;
    }
  
    .btn {
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
    }
  }