* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.hero-section {
    height: 100vh;

    background-image: url('https://analyticsindiamag.com/wp-content/uploads/2019/05/apps.55787.9007199266246365.687a10a8-4c4a-4a47-8ec5-a95f70d8852d-1540x866.jpg');
    background-size: cover;
    background-position: center;

    position: relative;
    border-bottom: 8px solid #222;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.6);

    z-index: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;

    position: relative;
    z-index: 2;
}

.logo {
    height: 35px;
}

.btn {
    text-decoration: none;
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: bold;
}

.btn-red {
    background-color: #e50914;
}

.btn-large {
    font-size: 1.5rem;
    padding: 15px 25px;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
    margin: 0 auto;
    padding-top: 150px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.email-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.email-form input {
    height: 60px;
    width: 450px;
    padding: 10px;
    font-size: 1rem;
    border: none;
    outline: none;
}

.email-form button {
    height: 60px;
    border: none;
    cursor: pointer;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.feature {
    padding: 70px 45px;
    border-bottom: 8px solid #222;
}

.feature-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-reversed {
    flex-direction: row-reverse;
}

.feature-text {
    flex-basis: 50%;
    padding-right: 20px;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-text p {
    font-size: 1.25rem;
}

.feature-media {
    flex-basis: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-media img {
    width: 100%;
    position: relative;
    z-index: 2;
}

.feature-media video {
    position: absolute;
    width: 73%;
    top: 20%;
    left: 13%;
    z-index: 1;
}

.video-devices {
    width: 63%;
    top: 9%;
    left: 18%;
}


.faq {
    padding: 70px 45px;
    border-bottom: 8px solid #222;
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.faq-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.faq-list li {
    margin-bottom: 10px;
}

.faq-question {
    background-color: #303030;
    width: 100%;
    padding: 20px;
    font-size: 1.5rem;
    text-align: left;
    border: none;
    color: white;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 2rem;
    font-weight: 300;
}

.faq-answer {
    background-color: #303030;
    padding: 0 20px;
    font-size: 1.25rem;
    text-align: left;

    max-height: 0;
    overflow: hidden;

    transition: max-height 0.25s ,
        padding 0.25s ;
}

.faq-answer p {
    padding: 20px 0;
}

.email-form-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}


footer {
    padding: 70px 45px;
    color: #757575;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-top {
    margin-bottom: 30px;
}

.footer-top a {
    color: #757575;
}

.footer-links {
    list-style: none;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #757575;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.language-select-wrapper {
    margin-bottom: 20px;
}

.language-select {
    background-color: #000;
    color: #757575;
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 1rem;
}

.footer-country {
    font-size: 0.9rem;
}