* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0c0c0c;
    background-image: url('background.jpg');
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

header {
    position: absolute;
    top: 20px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e0e0e0;
}

header .logo img {
    max-width: 100%;
    height: auto;
    width: 200px;
    transition: width 0.3s ease-in-out;
}

header .logo span {
    font-weight: 100;
    color: #d0d0d0;
    font-size: 0.8em;
    display: block;
    margin-top: 5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffffff;
}

main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.text {
    max-width: 40%;
}

.text h1 {
    font-size: 6vw;
    font-weight: 300;
    margin-bottom: 20px;
}

.text p {
    font-size: 2.5vw;
    line-height: 1.5;
}

.text em.main {
    font-size: 1.5vw;
    line-height: 1.5; /* Adjusted line height */
    font-style: italic;
    color: #b0b0b0;
}

.image img {
    max-width: 100%;
    height: auto;
    width: 600px;
    transition: width 0.3s ease-in-out;
    object-fit: contain;
}

.about {
    max-width: 80%;
    margin: 40px auto;
    font-size: 1.2em;
    line-height: 1.8;
    color: #e0e0e0;
}

.about h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 20px;
}

.contact h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact p {
    margin-bottom: 10px;
}

.privacy {
    max-width: 80%;
    margin: 40px auto;
    font-size: 1em;
    line-height: 1.6;
    color: #e0e0e0;
}

.privacy h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.privacy h2 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.privacy p {
    margin-bottom: 20px;
}


footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.8em;
    color: #e0e0e0;
}

footer a {
    color: #e0e0e0;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    main {
        flex-direction: column;
        align-items: flex-start;
    }

    .text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .image img {
        width: 100%;
    }
}

@media (max-width: 480px) {
    header .logo img {
        width: 150px;
    }

    .image img {
        width: 100%;
    }
}
