body {
    font-family: Arial, sans-serif;
    background-color: #001f3f;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    flex: 1;
    color: white;
}

.left, .right {
    flex: 1;
    max-width: 50%;
    overflow: hidden;
}

.left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.downloads {
    margin: 20px 0;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #0056b3;
}

.contact {
    margin-top: 20px;
}

.contact h2 {
    font-size: 1.5em;
}

.contact p {
    font-size: 1em;
}

footer {
    background-color: #2f2f2f;
    text-align: center;
    padding: 10px 0;
    color: #d3d3d3;
    font-size: 0.9em;
    position: relative;
}

.footer-line {
    width: 33%;
    height: 1px;
    background-color: #a9a9a9;
    margin: 0 auto 10px;
}

.footer-content {
    color: #d3d3d3;
    padding: 10px 0;
}

.footer-content a {
    color: #d3d3d3;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}
