* {
    font-size: 100%;
    font-family: 'Nunito Sans', serif;
}

a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from parent element */
}

body {
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #1c1e21;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #FF5722;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.menu-toggle {
    display: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    background-color: #FF5722; /* Change this color to your desired tint */
    color: white; /* Change the text color if needed */
    border-radius: 5px; /* Optional: add rounded corners */
    padding: 10px; /* Optional: add padding */
}

.menu-toggle:hover {
    background-color: #E64A19; /* Change this color for hover effect */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #1c1e21;
    font-weight: bold;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1000px;
    margin: auto;
}

.text-section {
    max-width: 500px;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(90deg, #FF5722, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-form {
    display: block;
}

.login-form input {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #1877f2;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #1558b3;
}

.image-section img {
    max-width: 400px;
    border-radius: 10px;
}

footer {
    background-color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

footer ul li a {
    text-decoration: none;
    color: #1c1e21;
    font-size: 14px;
}

.meta-logo {
    font-size: 14px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        .image-section img {
            visibility: hidden;
        }
    }

    .features-container {
        .image-section img {
            max-width: 70%;
        }
    }

    .menu {
        display: none;
        flex-direction: column;
        gap: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .menu.show {
        display: flex;
    }
}

.features-container {
    display: flex;
    flex-direction: column;
    height: 120vh; /* Set container height to 100% of viewport height */
    max-width: 1000px;
    margin: auto;
}

.feature-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    height: 100vh; /* Set section height to 100% of viewport height */
    scroll-snap-align: start;
}

.feature-page .image-section img {
    max-width: 400px;
    border-radius: 10px;
}

.feature-page .text-section {
    max-width: 500px;
}

.hidden {
    display: none;
}

.request-delete-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
}

.form-section {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-section h1 {
    margin-bottom: 20px;
    font-size: 24px;
}

.form-section label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.form-section input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-section button {
    width: 100%;
    padding: 10px;
    background-color: #FF5722;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-section button:hover {
    background-color: #E64A19;
}

.progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: #4caf50;
    width: 0;
    transition: width 0.1s linear;
}

.nav-button-previous {
    position: fixed;
    bottom: 10px;
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 1000;
}

.nav-button-next {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 1000;
}

.nav-button:nth-child(2) {
    right: 10px;
}

.nav-button:nth-child(3) {
    left: 10px;
}