 /* Global Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comfortaa', sans-serif;
}

body {
    height: 100%;
    background-color: white;
    text-align: center;
}

/* Header Section */
.lang-opt{
    width: 100%; 
    height: auto;
    display: flex;
    position: absolute;
    justify-content: end;
    align-items: center;
    padding-right: 2vw;  
    padding-top: 0.5vw
}

#languageSwitcher {
    text-align: center;
    font-size: 0.9vw;
    padding: 0.2vw;
    border:0.5px solid gray;
    border-radius: 5px;
    transition: 0.25s;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vh 2vw;
    font-size: 3vw;
    font-weight: bold;
    color: #2E5059;
    min-height: 10vh;
    background-color: white;
}

.download-button {
    background-color: #2E5059;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

/* Main Content */
.content {
    background-color: #2E505926;
    padding: 1vh 2vw;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    min-height: 89vh;
}

.text-content {
    text-align: justify;
    hyphens: auto;
    color: #2E5059;
    font-size: 1.2vw;
    font-weight: 500;
    line-height: 1.6;
    max-width: 45%;
}

.image-content img {
    max-width: 100%;
}

/* Our Product Section */
.text-header {
    color: #2E5059;
    font-weight: bold;
    text-align: left;
    font-size: 1.334vw;
    background-color: white;
    margin-top: 5vh;
    margin-left: 2vw;
    margin-right: 2vw;
}

.our-product {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0vw 2vw 0vw 2vw;
    
}

/* Default order (Desktop/Laptop) */
.text-product {
    order: 1;
}
.image-product {
    order: 2;
}

.text-product {
    text-align: justify;
    hyphens: auto;
    color: #2E5059;
    font-size: 1.2vw;
    font-weight: 500;
    line-height: 1.6;
    max-width: 60%;
}

.image-product img {
    width: 70%;
    height: auto;
}

.launching {
    background: linear-gradient(to right, #FADA46, white);
    padding: 2vw;
    margin: 0vw 0vw 6vh 2vw;
    font-size: 2vw;
    font-weight: bold;
    text-align: left;
    color: #2E5059;
    max-width: 60%;
}

/* Team Section */
.team-section {
    background-color: #dfe6e9;
    padding: 6vh 2vw;
    text-align: center;
}

.title-box {
    display: flex;
    flex-wrap: wrap;
}

.title-prespace {
    width: 50%;
}

.team-title {
    font-size: 2vw;
    font-weight: bold;
    color: #2E5059;
    width: 50%;
    padding-bottom: 2vw;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;    
}

.team-member {
    text-align: center;
    width: 25%;
}

.team-member img {
    width: 13vw;
    height: 13vw;
    border: 2px solid #2E5059;
    border-radius: 5px;
    margin-bottom: 1vw;
}

.team-member p {
    font-size: 1.2vw;
    color: #2E5059;
    margin: 0.2vw 0vw;
}

.team-quote {
    text-align: justify;
    hyphens: auto;
    color: #2E5059;
    font-size: 1.2vw;
    width: 50%;
    padding: 2.5vw 2vw;
    font-weight: 500;
    line-height: 1.6;
}

/* Updates Section */
.updates-section {
    background-color: white;
    padding: 6vh 2vw;

}

.updates-title {
    font-size: 2vw;
    font-weight: bold;
    text-align: start;
    color: #2E5059;
    margin-bottom: 2vw;
}

.updates-loading {
    width: 20%;
}

.updates-note {
    color: #3B6670; 
    font-size: 1.2vw;
    margin-bottom: 10vw
}

/* Footer Section */
.footer-section {
    background-color: #dfe6e9;
    padding: 2vw;
    text-align: start;
    display: flex;
    justify-content: space-between;
}

.footer-title {
    font-size: 1vw;
    color: #2E5059;
    margin-bottom: 1vw;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a img {
    width: 25px;
    height: 25px;
}

.contact-btn {
    background-color: #2E5059;
    color: white;
    padding: 1vw 1vw;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9vw;
    align-items: end;
    margin-right: 1.5vw;
}