/* global.css */

/* Reset and Normalize Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Root Variables for Theming */
  :root {
    --color-primary: #3498db; /* Primary color */
    --color-secondary: #2ecc71; /* Secondary color */
    --color-background: #ffffff; /* Background color */
    --color-text: #333333; /* Text color */
    --font-family: 'Helvetica Neue', Arial, sans-serif; /* Default font */
  }
  
  /* Body Styles */
  body {
    font-family: var(--font-family);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
  }
  
  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--color-primary);
  }
  
  /* Paragraphs */
  p {
    margin-bottom: 1rem;
  }
  
  /* Links */
  a {
    color: var(--color-primary);
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Buttons */
  button {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
  }
  
  button:hover {
    background-color: #2980b9; /* Darken the primary color */
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
  }
  
  /* Hero Section */
  .hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
  }
  
  /* Feature List */
  .feature-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .feature-item {
    max-width: 800px;
    margin-bottom: 30px;
  }
  
  .feature-item h2 {
    margin-bottom: 0.5rem;
  }
  
  /* About Section */
  .about {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Call to Action */
  .call-to-action {
    text-align: center;
  }
  
  .call-to-action p {
    margin-bottom: 1.5rem;
  }
  
  /* Footer */
  footer {
    padding: 20px;
    text-align: center;
    background-color: #f5f5f5;
    color: var(--color-text);
  }
  
  /* Responsive Styles */
  @media (min-width: 768px) {
    /* Feature List - Desktop */
    .feature-list {
      flex-direction: row;
      justify-content: space-around;
    }
  
    .feature-item {
      flex: 1;
      margin: 0 20px;
      max-width: none;
    }
  }
  