body {
    background-color: #121212;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1e1e;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.logo-container {
    width: 100%;
    height: auto;
    max-width: 700px;

}
.logo {
    width: 100%;
    height: auto;
    margin-right: 20px;
}

.contact-info {
    /* width: 40%; */
}

.info-container {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}


.person-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    margin-right: 20px;
}

.contact-info h1 {
    color: #fff;
    font-size: 24px;
    /* margin-bottom: 10px; */
}

.contact-info p {
    color: #bbb;
    font-size: 18px;
    line-height: 1.6;
}

.contact-info a {
    color: #bb86fc;
    text-decoration: none;
}

.short-text {
    margin-left: 20px;
    color: #fff;
    font-size: 24px;
}

.images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#lightbox.active {
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox img {
    max-width: 90%;
    max-height: 80%;
    margin: auto;
}

footer {
    background-color: #1e1e1e;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: auto;
}

@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .person-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .info-container {
        flex-direction: column;
    }

    .person-image {
        order: -1;
        margin-top: 20px;
        width: 100%;
    }
}