body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-image: url('./images/bg.png'); /* Replace with your image path */
    background-size: cover; /* Ensures the image covers the entire screen */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-attachment: fixed; /* Keeps the background image fixed when scrolling */
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden; 
}

.logo {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    z-index: 1000
}

.logo img {
    width: 120px;
    height: auto;
}


.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 200px 20px 0;
    box-sizing: border-box;
    flex-direction: column;
}

.content {
    text-align: left;
    max-width: 1000px;
    width: 100%;
}

.separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 50px 0;
}

.separator .line {
    width: 1px;
    height: 100px;
    background-color: #e4e4e4;
    margin: 10px 0;
}

.separator .cross {
    font-size: 24px;
    color: #fffefe;
    line-height: 1;
}

h2, h3, p {
    margin: 0.5em 0;
}

h2 {
    font-size: 30px;
    font-weight: 600;
    color: #e5e4e4;
}

h3 {
    font-size: 35px;
    color: #c3c3c3;
    font-weight: 200;
}

p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
}

.contact-us {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.contact-button {
    background-color: #1f1f1f;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-button:hover {
    background-color: #333;
    transform: scale(1.05);
}
