.Work-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 90px 24px 70px ;
        }

        .hero-section {
            margin-bottom: 60px;
        }

        .hero-images {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }

        .hero-images img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        h1 {
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 24px;
            font-style: normal;
            line-height: 1.2;
            color: #030F49;
        }

        h2 {
            font-size: 2rem;
            color: #030F49;
            font-weight: 600;
            margin: 60px 0 24px;
            line-height: 1.3;
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0 0 16px;
            line-height: 1.3;
            color: #030F49;

        }

        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 32px 0 16px;
            line-height: 1.3;
        }

        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #040F4E;
            font-weight: normal;
        }

        .intro-text {
            font-size: 18px;
            line-height: 1.7;
            color: #040F4E;
            font-weight: 400;
            margin-bottom: 40px;
        }

        .key-results {
            background: #f8f9fa;
            padding: 32px;
            border-radius: 12px;
            margin: 40px 0;
        }

        .key-results h3 {
            margin-top: 0;
            font-size: 1.5rem;
        }

        .key-results ul {
            list-style: none;
            padding: 0;
        }

        .key-results li {
            padding: 8px 0;
            font-size: 1.1rem;
            position: relative;
            padding-left: 24px;
            color: #030F49;
        }

        .key-results li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin: 40px 0;
        }

        .info-card {
            background: #f8f9fa;
            padding: 24px;
            border-radius: 8px;
        }

        .info-card h4 {
            margin-top: 0;
            color: #333;
        }

        .info-card p {
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .full-width-image {
            width: 100%;
            margin: 40px 0;
            border-radius: 8px;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
            margin: 40px 0;
        }

        .image-grid img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .image-caption {
            text-align: center;
            font-size: 0.95rem;
            color: #666;
            margin-top: 8px;
            font-style: italic;
        }

        .highlight-box {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 20px 24px;
            margin: 32px 0;
            border-radius: 4px;
        }

        .highlight-box p {
            margin-bottom: 8px;
        }

        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 32px 0;
        }

        .two-column img {
            width: 100%;
            border-radius: 8px;
        }

        .interactive-note {
            background: #e7f3ff;
            padding: 16px 24px;
            border-radius: 8px;
            margin: 24px 0;
            text-align: center;
            font-style: italic;
            color: #0066cc;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.35rem;
            }

            .hero-images {
                grid-template-columns: 1fr;
            }

            .info-grid,
            .two-column {
                grid-template-columns: 1fr;
            }

            .Work-container {
                padding: 40px 20px;
            }
        }


        .hero-bg {
  max-width: 1140px;
    aspect-ratio: 16 / 6;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 20px;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-bg {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .hero-bg {
    width: 95%;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
  }
}



.point-list {
            list-style: none;
            counter-reset: item;
        }

        .point-list > li {
            counter-increment: item;
            margin-bottom: 16px;
            color: #030F49;
            font-size: 18px;
            line-height: 1.6;
            padding-left: 0;
        }

        .point-list > li::before {
            content: counter(item) ". ";
            font-weight: 500;
            color: #030F49;
        }



      

        .iframe-container {
            flex: 1;
            position: relative;
            background: #f5f5f5;
            height: 60vh;
        }

        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
