html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: #03283F;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 600px) {
    p {
        font-size: 18px;
    }
    .content p:first-of-type {
        font-size: 18px;
    }
}
.top-bar {
    background-color: #021c2d;
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.top-bar-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    max-width: 200px;
    width: 100%;
}
.edr-logo {
    max-width: 150px;
    width: 100%;
}
.container {
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px 300px;
    box-sizing: border-box;
}
.content {
    background-color: white;
    padding: 30px;
    border-radius: 6px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    box-sizing: border-box;
}
.red-button {
    background-color: #c41230;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
}
.red-button:hover {
    background-color: #a30f27;
}
@media (max-width: 600px) {
    .container {
        width: 95%;
    }
    .content {
        width: calc(100% - 0px);
    }
}

.footer {
    background-color: #001622;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
}

.first-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4588235294);
}

.first-container img {
    max-width: 200px;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.nav-button {
    color: #1991eb;
    text-decoration: none;
}

.nav-button:hover {
    text-decoration: underline;
}

.second-container {
    padding-top: 20px;
}

.text {
    color: rgba(255, 255, 255, 0.4588235294);
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .first-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
}


