body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.full-screen-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.full-screen-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.5;
}

.overlay-text {
    position: absolute;
    top: 30%;  /* Moved to top 1/3 */
    left: 50%;
    transform: translate(-50%, -50%);
    color: #4C4E52;
    text-align: center;
    font-size: 2em;
}

.overlay-text h1 {
    margin: 0;
    padding: 0;
    font-size: 3em;
}

.overlay-text p {
    margin: 0;
    padding: 0;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #4C4E52;
    font-size: 1em;
    font-weight: 540;
    font-family: Arial, sans-serif;
    padding: 10px 0;
}

.footer p {
    margin: 0;
    padding: 0;
}
