/* Reset & Fonts */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f2f2f2;
    color: #222;
  }
  
  h1, h2, h3 {
    margin-bottom: 0.5rem;
  }
  
  p {
    line-height: 1.6;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('alberta-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 700px;
    margin: auto;
  }
  
  .cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background-color: #ffcc00;
    color: #003366;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e6b800;
  }
  
  /* Main Content */
  .content {
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
  }
  
  .section {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .card {
    background-color: white;
    border-left: 6px solid #003366;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Footer */
  footer {
    background-color: #003366;
    color: #eee;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
  }
 
  .pdf-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #006633;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
  }
  
  .pdf-button:hover {
    background-color: #004d26;
  }
  .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-block: 1rem;
  }
  
  .button-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
  }

  .card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  