body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.hero {
    position: relative;
    background-image: url('../assets/spacex-uj3hvdfQujI-unsplash.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    height: 80vh;
    padding-top: 20vh;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.hero .logo {
    width: 30%;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1024px) {
    .hero .logo {
        width: 45%;
    }
}

@media screen and (max-width: 768px) {
    .hero .logo {
        width: 55%;
    }

    .hero p {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 425px) {
    .hero .logo {
        width: 95%;
    }

    .hero p {
        font-size: 1em;
    }
}

.scroll-downs {
    position: absolute;
    right: 0;
    bottom: 36px;
    left: 0;
    margin: auto;
    z-index: 2;
    
    width: 34px;
    height: 55px;
  }

  .mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
  }

  .scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
  }

  @keyframes scroll {
    0% { opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0;}
  }

.cta-button {
    background-color: #f78f14;
    color: white;
    padding: 12px 24px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.cta-button:hover {
    background-color: #e67e22;
}

.cta-button-blue {
    background-color: #367bc3;
}

.cta-button-blue:hover {
    background-color: #306fb3;
}

.orange {
    color: #f78f14;
}

.blue {
    color: #367bc3;
}

section {
    padding: 1rem 4vw;
    max-width: 1000px;
    margin: auto;
}

section h2 {
    font-size: 3em;
    margin-bottom: .6rem;
    margin-top: 1.5rem;
}

section p {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: .6rem;
}

section .cta-button {
    margin-top: .8rem;
}

section h3 {
    margin-bottom: .6rem;
    font-size: 1.4em;
}

section ul {
    margin-top: 0;
    list-style: persian;
    padding-left: 30px;
    font-size: 1.2em;
}

.ul-emoji {
    list-style: none;
    padding-left: 16px;
}

small {
    font-size: .6rem;
}

small:hover {
    font-size: 1rem;
}

footer {
    margin-top: 3rem;
    background-color: #367bc3;
    color: white;
    padding: 1rem 0;
    margin-left: auto;
    margin-right: auto;
}

footer p {
    font-size: 1.1rem;
    margin-top: 0;
    text-align: center;
}

footer .social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}