        /* Overlap Section */
        .overlap-section {
            background-image: linear-gradient(0deg, rgba(27,68,75,0.7), rgba(27,68,75,0.4)), url('../assets/oversection.png');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            padding: 12rem 0 8rem 0;
            margin-top: -6rem;
            position: relative;
            z-index: 10;
            color: #ffffff;
        }

        .overlap-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }

        .overlap-title {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 2rem;
            line-height: 1.3;
            letter-spacing: 0.01em;
        }

        .overlap-text {
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 3rem;
            font-weight: 300;
            font-style: italic;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .overlap-cta {
            display: flex;
            justify-content: center;
        }

        .explore-button {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background: #ffffff;
            color: #666;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: var(--radius-pill);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .explore-button:hover {
            background: #550040;
            color: #ffffff !important;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
        }

        /* Responsive Design for Overlap Section */
        @media (max-width: 992px) {
            .overlap-section {
                margin-top: -4rem;
                padding: 10rem 0 6rem 0;
            }
            
            .overlap-content {
                padding: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .overlap-section {
                background-attachment: scroll;
                margin-top: -3rem;
                padding: 8rem 0 5rem 0;
            }
            
            .overlap-content {
                padding: 1.5rem 1rem;
            }
            
            .overlap-text {
                margin-bottom: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .overlap-section {
                margin-top: -2rem;
                padding: 6rem 0 4rem 0;
            }
            
            .overlap-content {
                padding: 1rem;
            }
            
            .overlap-text {
                margin-bottom: 2rem;
            }
        }
