  body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #ffffff;
            margin: 0;
            font-family: 'Poppins', sans-serif;
            width: 100%;
            overflow-x: hidden;
        }
.parallax-section {
    height: 50vh;
    background-image: url('https://wiltonrecords.com/_assets/home/music1.jpg'); /* Resim yolu */
    background-size: cover;
    background-attachment: fixed; /* Parallax efekti */
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
.parallax-section2 {
    height: 50vh;
    background-image: url('https://wiltonrecords.com/_assets/home/1g15mb4.jpg'); /* Resim yolu */
    background-size: cover;
    background-attachment: fixed; /* Parallax efekti */
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
        .how-it-works {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 50px 20px;
        }

        .how-it-works h2 {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
            color: #333;
        }

        .steps {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .step {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin: 20px 0;
        }

        .step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .step-content {
            flex: 1;
            max-width: 500px;
            text-align: center;
            padding: 20px;
        }

        .step-content h3 {
            font-size: 1.5em;
            margin-bottom: 10px;
            color: #333;
        }

        .step-content p {
            font-size: 1em;
            color: #666;
        }

        .step-image {
            flex: 1;
            max-width: 300px;
            text-align: center;
        }

        .step-image img {
            max-width: 100%;
            height: auto;
        }

        .step-number {
            position: relative;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff416c, #ff4b2b);
            color: #fff;
            font-size: 1.5em;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 20px;
        }

        @media (max-width: 768px) {
            .step {
                flex-direction: column;
            }

            .step:nth-child(even) {
                flex-direction: column;
            }

            .step-number {
                margin: 20px 0;
            }
        }
       
  
