/* Typography and Layout */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    color: #2c3e50;
    line-height: 1.6;
  }
  
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 12px;
  }
  
  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #1c2a3a;
    margin-top: 2.5rem;
  }
  
  a {
    color: #2a5885;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Gallery Layout */
  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
  }
  
  .gallery img {
    width: 100%;
    max-width: 280px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.3s;
  }
  
  .gallery img:hover {
    transform: scale(1.03);
  }
  
  /* Parcel Cards */
  .parcel-cards {
    margin-top: 2rem;
    text-align: center;
  }
  
  .card-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .card-details {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .card-details summary {
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-weight: bold;
    color: #2c3e50;
    background-color: #f4f6f8;
    font-size: 1rem;
  }
  
  .card-details[open] summary {
    background-color: #e8ecef;
  }
  
  .card-link {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #2c3e50;
    background-color: #ffffff;
    transition: background-color 0.3s;
  }
  
  .card-link:hover {
    background-color: #f0f0f0;
  }
  
  /* Responsive Enhancements */
  @media (min-width: 600px) {
    .card-grid {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .card-details {
      width: 45%;
    }
  }
  
  @media (max-width: 480px) {
    .gallery img {
      max-width: 100%;
    }
  
    h1 {
      font-size: 1.8rem;
    }
  
    h2 {
      font-size: 1.4rem;
    }
  }
  