body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background: #141414;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

header {
    background: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Concave B', sans-serif; /* Use Concave B font */
    font-size: 60px; /* Slightly reduced font size */
    font-weight: bold;
    color: #e50914; /* Red color */
    letter-spacing: 2mm; /* 2mm gap between letters */
    margin-left: 5cm; /* 5 cm from the left edge */
}

.actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sign-in {
    padding: 10px 20px;
    background: #e50914;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.sign-in:hover {
    background: #f40612;
}

.language-dropdown {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
}

.language-dropdown option {
    background: #333;
    color: #fff;
}

.hero {
    background: url('images/n3.jpg') center center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 0 20px; /* Remove top and bottom padding */
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    position: relative;
}

.hero h1 {
    font-size: 4em; /* Increase font size */
    margin: 0;
}

.hero p {
    font-size: 1.5em; /* Increase font size */
    margin: 10px 0;
}

.subheading {
    margin: 20px 0;
}

.email-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.email-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 300px;
}

.email-form button {
    padding: 10px 20px;
    background: #e50914;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.email-form button:hover {
    background: #f40612;
}

/* Styles for the step section */
.step {
    display: none; /* Hide step section initially */
    background: #141414;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full viewport height */
    box-sizing: border-box;
}

.step h2 {
    font-size: 2em;
}

.step p {
    font-size: 1.2em;
    margin: 10px 0;
}

.login-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #333;
    border-radius: 5px;
}

.login-form input,
.login-form button {
    width: calc(100% - 20px);
    margin: 10px auto;
    padding: 10px;
}

.login-form label {
    display: block;
    margin: 10px 0 5px;
}

.login-form button {
    background: #e50914;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-form button:hover {
    background: #f40612;
}

.features {
    padding: 50px 20px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.feature img {
    width: 30%; /* Minimized image size */
    margin: 0 20px;
}

.feature .text {
    width: 70%;
    text-align: center; /* Center-align text by default */
}

.feature .text h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center; /* Center-align heading */
}

.feature .text p {
    font-size: 16px;
}

/* Specific alignment for feature 2 */
.feature:nth-child(2) {
    flex-direction: row-reverse; /* Image on the right, text on the left */
    text-align: left; /* Align text to the left */
}

.feature:nth-child(2) img {
    width: 30%; /* Minimized image size */
    margin: 0 20px;
}

.feature:nth-child(2) .text {
    width: 70%;
    text-align: left; /* Align text to the left */
}

/* Ensure feature 4 does not get affected */
.feature:nth-child(4) {
    flex-direction: row; /* Text on the left, image on the right */
}

/* Align text to the left and image to the right for feature 3 */
.feature:nth-child(3) {
    flex-direction: row; /* Text on the left, image on the right */
    text-align: left;
}

.feature:nth-child(3) img {
    width: 30%; /* Minimized image size */
    margin: 0 20px;
}

.feature:nth-child(3) .text {
    width: 70%;
}

/* FAQ section styles */
.faq-section {
    padding: 50px 20px;
    background-color: #141414; /* Match background color with the rest of the page */
    text-align: center;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.faq-section .question {
    background-color: #333; /* Dark grey background for questions */
    color: white;
    padding: 20px;
    margin: 10px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-section .question .plus {
    font-size: 24px;
}

.email-section {
    text-align: center;
    padding: 50px 20px;
}

.email-section input, .email-section button {
    padding: 10px;
    font-size: 16px;
    margin: 10px 0;
}

.email-section button {
    background-color: #e50914;
    color: white;
    border: none;
    cursor: pointer;
}

.separator {
    height: 2px;
    background-color: grey;
    margin: 20px 0;
}

.footer {
    background-color: #141414; /* Match background color with the rest of the page */
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.footer .matrix {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer .matrix div {
    width: 25%;
    padding: 10px;
}

.footer .language-dropdown {
    position: absolute;
    bottom: 20px; /* Align to bottom */
    left: 20px; /* Align to left side */
}

.footer .language-dropdown select {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 16px;
}

.footer .logo {
    margin-top: 10px;
    font-size: 24px;
}
