html {
 height: 100%;
 width: 100%;
}


body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


header {
    background: url('https://image.sunny.eu/lib/fe2e11737364047d7d1176/m/1/dd0a668d-5bd0-4167-9592-f639841ff29c.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    text-align: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}


.brandlogo img {
    max-height: 50px;
}

h1 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 10px 0;
}


nav {
    background-color: #F9AE00;
    padding: 10px 0;
    border-radius: 20px;
    overflow: hidden;
    color: #08426a;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

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

/* Main Content Styles */
main {
    padding: 20px 0;
}

.content {
    margin-bottom: 40px;
}

h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0099BC;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
}

label {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
}

input[type="submit"] {
    background-color: #F9AE00;
    color: #333333;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #e69c00;
}

/* Back to Top */
.btt {
    text-align: right;
    margin-top: 20px;
}

.btt a {
    color: #0099BC;
    text-decoration: none;
    font-size: 14px;
}

.btt a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #f8f8f8;
    padding: 20px 0;
    border-top: 4px solid #08426a;
    text-align: center;
}

footer p {
    font-size: 14px;
    color: #999999;
    margin: 0;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 20px;
        text-align: center;
    }

    nav ul {
        padding: 0 10px;
    }

    main {
        padding: 10px 0;
    }

    .content {
        padding: 0 10px;
    }
}