body {
    font-family: Arial, sans-serif;
    background-color: #033B42;
    margin: 50px;
    padding: 50px;
}

p {
    color: white;
}

h1 {
    color: white;
    text-align: center;
}

h2 { 
    color: white;
}

/* Unvisited link */
a:link {
    color: blue;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
}

/* Visited link */
a:visited {
    color: purple;
    text-decoration: none;
}

/* Mouse over link */
a:hover {
    color: red;
    text-decoration: underline;
}

/* Selected link */
a:active {
    color: orange;
    text-decoration: underline;
}

.faq-container {
    width: 80%;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.faq-item {
    border-bottom: 1px solid #e2e2e2;
    padding: 10px 0;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '\002B'; /* Plus sign */
    font-size: 24px;
    position: absolute;
    right: 0;
}

.faq-item.active .faq-question::after {
    content: '\2212'; /* Minus sign */
}

.faq-answer {
    display: none;
    padding-top: 10px;
    font-size: 16px;
    color: black;
}

.banner {
    width: 100%;
    height: 5cm;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

.content {
    padding: 20px;
}

/* Small devices (phones, less than 600px) */
@media only screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }
}

/* Medium devices (tablets, 600px to 768px) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }
}

/* Large devices (laptops/desktops, 769px and up) */
@media only screen and (min-width: 769px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 32px;
    }

    p {
        font-size: 18px;
    }
}

/* Landscape orientation */
@media only screen and (orientation: landscape) {
    .container {
        padding: 25px;
    }

    h1 {
        font-size: 30px;
    }

    p {
        font-size: 16px;
    }
}

/* Portrait orientation */
@media only screen and (orientation: portrait) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }
}