*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Arial';
    margin: 0;
    padding: 0;
    color: #fff;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: bottom;

}

body a {
    color: #fff !important;
    text-decoration: none;
}

li {
    position: relative;
    line-height: 24px;
}

.li-space {
    color: rgba(255, 255, 255, 0.85);
    display: block;
    padding-left: 28px;
}

.li-icon {
    position: absolute;
    top: 0;
    left: 0;
}

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

header {
    text-align: center;
    padding: 120px 20px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    background-color: rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 56px;
    margin: 0 0 18px 0;
}

header p {
    font-size: 24px;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.85);
}

header .logo img {
    width: 240px;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 2px solid #fff;
}

.social-buttons {
    margin: 30px 0 0 0;
}

.social-buttons a {
    text-decoration: none;
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
}

.social-buttons a:hover {
    color: #ffcb05 !important;
}

section {
    padding: 80px 0px;
    backdrop-filter: blur(15px);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    margin-bottom: -1px;
}

section h2 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
}

section:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.2);
}

section:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.1);
}

section>div {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    align-items: center;
}

section>div>div {
    padding-left: 20px;
    padding-right: 20px;
}

section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

section img {
    border-radius: 20px;
}

section ul {
    list-style: none;
    padding: 0;
}

section ul li {
    margin: 10px 0;
}


section .title {
    font-size: 2rem;
    margin-bottom: 20px;
}

section .image img {
    width: 100%;
}

footer {
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(15px);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

footer p {
    margin: 0;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffcb05;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}

.roadmap {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}

.roadmap > div {
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 700px) {

    section:nth-child(odd)>div {
        flex-direction: row-reverse;
    }

    section>div>div {
        width: 50%;
    }

    .roadmap > div {
        width: 50%;
    }
}

/* Mobile Styles */
@media (max-width: 699px) {
    section>div>div {
        width: 100%;
    }
    section img {
        margin-bottom: 20px;
    }
}