
  :root {
    --primary: #d01012;
    --secondary: #ffcf00;
    --dark: #006db7;
    --light: #ffffff;
    --gray: #f5f5f5;
    --text: #333333;
    --border: #e0e0e0;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.6;
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }

  h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  p {
    margin-bottom: 1rem;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }

  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }

  .btn-primary {
    background-color: var(--primary);
    color: var(--light);
  }

  .btn-primary:hover {
    background-color: #b80000;
  }

  .btn-secondary {
    background-color: var(--secondary);
    color: var(--text);
  }

  .btn-secondary:hover {
    background-color: #e6bb00;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    color: var(--light);
    overflow: hidden;
    margin-bottom: 3rem;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .hero-section .container {
    position: relative;
    z-index: 2;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
  }

  /* Featured Sets Section */
  .featured-sets {
    padding: 4rem 0;
    background-color: var(--light);
  }

  .section-intro {
    max-width: 800px;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
  }

  .sets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .set-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .set-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .set-image {
    height: 250px;
    overflow: hidden;
  }

  .set-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .set-card:hover .set-image img {
    transform: scale(1.05);
  }

  .set-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .set-number {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .set-description {
    margin-bottom: 1.5rem;
  }

  .set-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #666;
  }

  .set-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .set-info .btn {
    margin-top: auto;
    align-self: flex-start;
  }

  /* Coming Soon Section */
  .coming-soon {
    padding: 4rem 0;
    background-color: var(--gray);
  }

  .coming-soon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .coming-soon-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .coming-soon-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .coming-soon-item:hover img {
    transform: scale(1.05);
  }

  .coming-soon-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light);
  }

  .release-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }

  /* News Section */
  .lego-news {
    padding: 4rem 0;
    background-color: var(--light);
  }

  .news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .news-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .news-card img {
    height: 200px;
    object-fit: cover;
  }

  .news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .read-more:hover {
    color: #b80000;
  }

  .read-more i {
    transition: transform 0.3s ease;
  }

  .read-more:hover i {
    transform: translateX(5px);
  }

  /* Newsletter Section */
  .newsletter {
    padding: 4rem 0;
    background-color: var(--dark);
    color: var(--light);
  }

  .newsletter h2:after {
    background-color: var(--secondary);
  }

  .newsletter-form {
    max-width: 600px;
    margin-top: 2rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
  }

  .form-group input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
  }

  .form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .form-group.checkbox input {
    margin-top: 0.3rem;
  }

  .form-group.checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  /* Responsive Styles */
  @media (min-width: 768px) {
    h1 {
      font-size: 3rem;
    }

    h2 {
      font-size: 2.25rem;
    }

    h3 {
      font-size: 1.75rem;
    }

    .sets-grid, 
    .coming-soon-grid, 
    .news-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .set-card {
      flex-direction: row;
    }

    .set-image {
      width: 40%;
      height: auto;
    }

    .set-info {
      width: 60%;
    }
  }

  @media (min-width: 1024px) {
    .hero-section {
      height: 500px;
    }

    .sets-grid, 
    .news-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .set-card {
      flex-direction: column;
    }

    .set-image, 
    .set-info {
      width: 100%;
    }

    .set-image {
      height: 250px;
    }
  }
