body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    padding: 10px 20px;
    text-align: right;
    margin-right: 5%;
    z-index: 2;
    position: relative;
}

.header p {
    margin: 0;
    font-size: 14px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    margin-top: 30px;
    flex-grow: 1;
}

.logo-section {
    text-align: center;
    padding: 20px 20px;
    margin-bottom: 30px;
}

.text-section {
    text-align: center;
    padding: 20px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.text-section p {
    font-size: 16px;
    line-height: 1.6;
}

.work-with-us-button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.image-section {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    text-align: center;
    padding: 10px 20px;
    background-color: #111;
    font-size: 14px;
    position: relative;
    z-index: 1;
}