/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    color: #1d1d1f;
    background-color: #ffffff;
    overflow-x: hidden;
}

.sitewide-main-wrapper {
   /* margin-top: 48px;*/
   margin-bottom:30px;
}



/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 40px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li:not(:last-child) {
        display: none;
    }

    .nav-links {
        justify-content: flex-end;
        width: 100%;
        padding-top:15px;
    }

    nav {
        justify-content: space-between;
    }
}