/* Reset and basic styles */
body, h1, h2, h3, p, ul, li, img {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Manrope', serif;
    box-sizing: border-box;
    color: #ffffff;
    font-weight: 100;
}

body {
    line-height: 1.6;
    background-color: #000;
}

header nav ul.active {
    display: flex; /* Show the nav menu when 'active' class is added */
}

header {
    background-color: rgb(0, 0, 0, 0);
    padding: 0 1rem;   
    align-content: center;
}

header .navigation {
    display: flex;
    justify-content: space-between;   
    vertical-align: top;  
    padding: 0 1rem;  
}

header nav ul {
    display: flex;
}

header nav ul li {
    margin-left: 1rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Hero section styles */
.hero {
    background: url('images/hero-background.jpg') no-repeat center center/cover;
    height: 900px;
}

.privacy_policy_hero {
    background: url('images/privacy_policy.jpg') no-repeat center center/cover;
    height: 500px;
}

.terms_of_service_hero {
    background: url('images/terms_of_services.jpg') no-repeat center center/cover;
    height: 500px;
}

.hero-text {
    margin: 0 0;
    display: flex;
    height: 100%;
}


.hero h2 {
    font-size: 4rem;
    font-weight: 300;
    display: inline-block;
    align-self: flex-end;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 7rem;
}

.statment {
    text-align: center;
    align-content: center;
    padding: 10%;
}


.statment h2 {
    font-size: 3rem;
    font-weight: 100;
}

/* Section styles */
section {
    padding: 3rem 0;
}

section .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 1rem;
}

section .terms-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 1rem;
}

section .terms-container section{
    padding: 1rem 0;
}

section .terms-container  h1{
    padding: 1rem 0;
    font-size: 3rem;
}

section .terms-container  h2{
    padding: 1rem 0;
    font-size: 2rem;
}

section .terms-container  h3{
    padding: 0.5rem 0;
    font-size: 1.5rem;
    color: #fff;
}

section .terms-container  p{
    padding: 0.4rem 0;
}

section .text {
    flex: 1;
    font-size: 1.5rem;
    padding: 1rem;
    color: #898989
}

section .image {
    flex: 1;
    padding: 1rem;
}

section .image img {
    max-width: 100%;
    border-radius: 8px;
}

section h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000
}


.service {
    flex: 1;
    background-color: #191818;
}

.service-container {
    max-width: 1200px;
    flex: 1;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 1rem;
}

/* Alternating layout for sections */
.service .container {
    width: 80%;
    flex: 1;
    margin: 0 auto;
    flex-direction: row;
}

.service h2 {
    font-weight: 200;
}

.service-items {
    display: flex;
    flex-direction: row;
}

.service-text {
    padding: 4rem 0;
    flex: 1;
    font-size: 1.5rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 2rem;
    text-align: center;
    min-width: 300px;
    max-width: 600px;
}

.service-item .icon img {
    width: auto;
    height: 100px;
    padding: 1rem 0;
}

.service-item, h2 {
    font-weight: 2000;
}

.service-item, p {
    padding-top: 1rem;
    padding-bottom: 3rem;
    font-weight: 100;
    color: #AFAFAF;
}

.welcome h2 {
    font-weight: 200;
}

.app .container {
    padding: 1rem 1rem;
    background-color: #2B2B2B;
    border-radius: 25px;
    flex-direction: column;
}

.app .container .text{
    flex: 1;
    font-size: 1.5rem;
    padding: 1rem;
    color: #898989;
    text-align: left;
    max-width: 900px;
}

.team .container {
    text-align: center;
    flex-direction:column;
}

.team-members{
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding-bottom: 6rem;
    justify-content: space-around;
}

.team-members .team-member{
    text-align: center;
    color: #fff;

}

.footer {
    padding-top: 3rem;
    text-align: center;
    background-color: #191818;
}

.footer input{
  min-width: 800px;
}

.contact-info {
    margin-bottom: 5px;
}

.contact-info p {
    margin: 0 0;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.5);
    padding-top: 10px;
}

.footer-bottom p {
    margin: 0;
}


@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h2 {
        font-size: 3rem;
        font-weight: 300;
        display: inline-block;
        align-self: flex-end;
        padding-left: 4rem;
        padding-right: 4rem;
        padding-bottom: 4rem;
    }

    .statment h2 {
        font-size: 2rem;
        font-weight: 100;
    }

    .welcome h2 {
        font-size: 2rem;
        font-weight: 100;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 0.5rem 0;
    }

    section .container {
        flex-direction: column;
        text-align: center;
    }

    section .text, section .image {
        flex: 100%;
    }

    .service-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 1200px) {

    header .container {
        flex-direction: column;
        text-align: center;
    }

    .service-items {
        flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}