
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;700&display=swap');
    
    body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background: #0b0f14;
      color: #e6e6e6;
      line-height: 1.6;
    }
    
    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 3rem 1.5rem;
    }
    
    h1, h2, h3 {
      font-family: 'Montserrat', sans-serif;
      line-height: 1.25;
      color: #ffffff;
    }
    
    .hero {
      text-align: center;
      padding: 6rem 1.5rem; /* Increased padding */
      background: linear-gradient(135deg, #0b0f14, #1a202c); /* Subtle gradient */
    }
    
    .cta {
      background: #22c55e;
      color: #0b0f14;
      padding: 1rem 2rem; /* More padding */
      border-radius: 8px; /* Larger border-radius */
      font-weight: 700; /* Bolder font */
      text-decoration: none;
      text-transform: uppercase; /* Uppercase text */
      letter-spacing: 0.05em; /* Letter spacing */
      transition: background-color 0.3s ease, transform 0.3s ease; /* Hover transition */
      display: inline-block; /* Allows padding and transform */
    }
    
    .cta:hover {
      background-color: #1a9f4d; /* Darker green on hover */
      transform: translateY(-2px); /* Slight lift on hover */
    }
    
    .card {
      border-radius: 12px;
      overflow: hidden;
      margin-top: 2.5rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08); /* Enhanced shadow and subtle border */
      transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover effect */
    }
    
    .card:hover {
      transform: translateY(-5px); /* Lift effect */
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15); /* Stronger shadow */
    }
    
    .package-hero {
      position: relative;
      background-image: url('images/videoanalyysi.png');
      background-size: cover;
      background-position: center;
      padding: 2.5rem; /* Slightly more padding */
    }
    
    .package-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(11, 15, 20, 0.85); /* Increased opacity */
    }
    
    .package-content {
      position: relative;
      z-index: 1;
      color: #fff;
      padding: 1.5rem 2rem; /* Added padding to content */
    }
    
    .package-content h3 {
      margin-top: 0;
      font-size: 1.8rem; /* Larger font size for h3 */
    }
    
    .package-content ul {
      list-style: none; /* Remove default bullet points */
      padding-left: 0;
      margin: 1.5rem 0; /* Adjusted spacing */
    }
    
    .package-content li {
      /*position: relative;
      padding-left: 1.8rem; /* Space for custom bullet */
      /*margin-bottom: 0.8rem; /* Spacing between list items */
      display: flex;
      align-items: center;
      gap: 0.5rem; /* tilaa emojin ja tekstin väliin */
      margin-bottom: 0.5rem;
    }
    
    .package-content li::before {
      /* content: '✔'; /* Custom checkmark bullet */
      color: #22c55e; /* Green color */
      position: absolute;
      left: 0;
      font-weight: 700;
    }
    
    .price {
      font-size: 2.2rem; /* Larger font size */
      font-weight: 700;
      color: #22c55e;
      margin-top: 1rem; /* More space after list */
    }
    
    .highlight {
      color: #22c55e;
      font-weight: 700;
    }
    
    .section-image {
      display: block; /* Ensures proper centering */
      max-width: 100%;
      height: auto;
      margin: 2rem auto; /* Center image with margin */
      border-radius: 8px; /* Rounded corners for images */
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    footer {
      text-align: center;
      padding: 3rem 1.5rem;
      color: #888;
      font-size: 0.9rem;
      margin-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* New Styles */
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px; /* Offset for sticky nav */
    }

    .top-nav {
      position: sticky;
      top: 0;
      background: rgba(11, 15, 20, 0.8);
      backdrop-filter: blur(10px);
      z-index: 100;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .top-nav .container {
      display: flex;
      justify-content: center;
      gap: 2rem;
      padding: 0 1.5rem;
    }

    .top-nav a {
      color: #e6e6e6;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .top-nav a:hover {
      color: #22c55e;
    }
    
    .about-content {
      display: flex;
      flex-direction: row-reverse;
      gap: 2rem;
      align-items: flex-start;
    }

    .about-image {
      width: 200px;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      flex-shrink: 0;
    }

    .about-text {
      flex: 1;
      text-align: justify;
    }

    @media (max-width: 768px) {
      .container {
        padding: 2rem 1rem;
      }

      h2 {
        font-size: 1.5rem;
      }

      h3 {
        font-size: 1.3rem;
      }

      .top-nav .container {
        gap: 1rem;
        padding: 0 1rem;
      }

      .top-nav a {
        font-size: 0.9rem;
      }

      .about-content {
        flex-direction: column;
        align-items: center;
      }

      .about-image {
        width: 150px;
      }

      .about-text {
        text-align: left;
      }

      .package-hero {
        padding: 1rem;
      }

      .package-content {
        padding: 1rem;
      }

      .package-content h3 {
        font-size: 1.4rem;
      }

      .price {
        font-size: 1.8rem;
      }

      .achievements-gallery {
        flex-direction: column;
      }

      .gallery-image {
        min-width: 100%;
        height: 150px;
      }

      .cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
      }

      footer {
        padding: 2rem 1rem;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 1.5rem 0.75rem;
      }

      h2 {
        font-size: 1.3rem;
      }

      .top-nav .container {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
      }

      .top-nav a {
        font-size: 0.85rem;
      }

      .about-image {
        width: 120px;
      }

      .package-content h3 {
        font-size: 1.2rem;
      }

      .price {
        font-size: 1.5rem;
      }

      .gallery-image {
        height: 120px;
      }
    }

    .achievements-gallery {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
      flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }

    .gallery-image {
      flex: 1;
      min-width: 200px; /* Minimum width for wrapping */
      max-width: 100%;
      height: 180px; /* Fixed height for cropped preview */
      object-fit: cover; /* Crop to fill the area */
      object-position: center; /* Center the crop */
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-image:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }

    /* Lightbox styles */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      align-items: center;
      justify-content: center;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-content {
      max-width: 90%;
      max-height: 90%;
      border-radius: 8px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .lightbox-close:hover {
      color: #22c55e;
    }
