body {
    background-color: royalblue;
    color: white;
    font-family: 'Unbounded', Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

        .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
	   
        }
        .menu {
            border: 1px solid #ccc;
            border-radius: 10px;
            padding: 20px;
            margin: 10px;
            width: 30%;
            min-width: 200px;
            box-sizing: border-box;
        }
        .menu label {
            display: block;
            margin-bottom: 5px;
        }
        .menu input[type="radio"] {
            margin-right: 10px;
        }
        #result {
            margin-top: 20px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }
        #result img {
            display: none;
            width: 25%;
            min-width: 250px;
            height: auto;
            margin: 10px;
        }
        #result p {
            text-align: center;
        }
        @media (max-width: 600px) {
            .menu {
                width: 90%;
            }
            #result {
                flex-direction: column;
                align-items: center;
            }
            #result img {
                max-width: 90%;
                margin: 10px auto;
            }
        }

.navbar {
    position: fixed;
    top: 0;
    width: 95%;
    background-color: royalblue;
    padding: 10px 20px;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0 10px;
}

.get-involved-btn {
    border: 2px solid white;
    padding: 5px 10px;
    border-radius: 5px;
}

.section {
    padding: 100px 20px;
    text-align: center;
}

.home .main-title {
    font-size: 2.5em;
}

.home .tagline {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.logo {
    max-width: 150px;
}

.about-us .about-block, .demo-options, .text-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.about-us .about-text, .demo-menu {
    max-width: 300px;
    padding: 10px;
}

.about-us .rounded-img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 15px;
}

.demo-menu {
    border: 2px solid white;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
}

.submit-btn {
    background-color: hotpink;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 20px;
}

.submit-btn:hover {
    background-color: white;
    color: hotpink;
}

.demo-result {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.result-image {
    width: 30%;
    min-width: 300px;
    min-height: 300px;
    margin: 10px;
    position: relative;
    display: none;
}

.text-box {
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 10px;
    position: absolute;
    top: -40px;
    width: calc(30% - 20px);
    min-width: 300px;
    display: none;
}

.partnerships {
    background-color: black;
    color: white;
    padding: 60px 20px;
}

.center-line {
    width: 50%;
    margin: 20px auto;
    border: 1px solid grey;
}

.partner-logo {
    max-width: 200px;
}

.partner-btn {
    background-color: blue;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.partner-btn:hover {
    background-color: lightblue;
}

.get-involved .involvement-box {
    background-color: black;
    color: white;
    border: 2px solid white;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
}

.get-involved .involvement-box button, .contact-btn {
    background-color: blue;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.get-involved .involvement-box button:hover, .contact-btn:hover {
    background-color: lightblue;
}

.blue-section {
    background-color: royalblue;
}

.text-boxes2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.text-box2 {
    border: 2px solid white;
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    flex: 1 1 30%;
    max-width: 300px;
}

.highlight-box2 {
    background-color: hotpink;
    color: white;
    border: 2px solid white;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.faq {
    background-color: royalblue;
}

.faq-item {
    background-color: white;
    color: black;
    border: 2px solid white;
    border-radius: 10px;
    padding: 20px;
    margin: 10px auto;
    max-width: 85%;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    transform: scale(1.01);
}

.faq-answer {
    display: none;
    margin-top: 10px;
}

.arrow {
    float: right;
    transition: all 0.3s;
}
