
body {
    margin: 0;
    font-family: "Nunito", sans-serif;
    background-color: #fdfdfd;
    color: #fff;
    line-height: 1.6;
}

h1 {
    font-size: 5.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 3.5rem;
    text-align: center;
}

p {
    margin-bottom: 1.5rem;
}

ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

ul li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.2rem;
    list-style: none;
}

ul li::before {
    content: "•";
    color: #0088cc;
    font-weight: bold;
    position: absolute;
    left: 0;
}


a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

a:hover {
    color: #003A70;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url("../images/bg-image.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: inset -3px 2px 17px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: inset -3px 2px 17px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: inset -3px 2px 17px 0px rgba(0,0,0,0.75);
    padding-bottom: 2rem;
}

.container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1;
}

.header,.content,.footer {
    position: relative;
    z-index: 2;
}

.header {
     text-align: center;
}

.header img {
    width: 100%;
    max-width: 350px;
}

.content {
    font-size: 1.4rem;
    padding: 2rem;
    text-align: center;
}

.content .text {
    max-width: 700px;
    margin: 0 auto;
}
.content .text p {
    margin: 3rem 0;
}
.footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    justify-content: center;
}

.footer a img {
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.footer a img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
        margin-top: 0;
    }
    h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    .content {
        padding-top: 0;
        font-size: 1.1rem;
    }

    .content .text p {
        margin: 1.5rem 0;
    }
}