body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

@font-face {
    font-family: "San Francisco";
    font-weight: 400;
    src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff");
}

.header-iframe {
    width: 100%;
    height: 100px;
    border: none;
}

/* General Styling */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}



.section, .image-scroll-section {
    padding-top: 80px;
}

.image-scroll-section {
    height: 300vh;
    position: relative;
}

.image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease;
    opacity: 0;
}

#image1 {
    background-image: url('path-to-image1.jpg');
}

#image2 {
    background-image: url('path-to-image2.jpg');
}

#image3 {
    background-image: url('path-to-image3.jpg');
}

.active {
    opacity: 1;
}

/* Other Sections */
.section {
    padding: 40px;
    text-align: center;
    background-color: #f4f4f4;
    margin-top: 100vh; /* Start after the scroll section */
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}
