/* Fullscreen background */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow: hidden;
    font-family: inherit;
    color: #0b0d14;
}

body {
    background-image: url("../Images/Charging-Construction.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Main layout */
.nosocials {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 40px;
    gap: 40px;
    box-sizing: border-box;
}

/* LEFT - logo */
.nosocials-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nosocials-left img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

/* RIGHT - text */
.nosocials-right {
    max-width: 480px;
}

.nosocials-right h1 {
    margin: 0 0 12px;
    font-size: 2.4rem;
    font-weight: 900;
}

.nosocials-right p {
    margin: 0 0 10px;
    font-size: 2.0rem;
    line-height: 1.5;
}

/* Go Back link */
.back-link {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #0b0d14;
    color: #0b0d14;
    text-decoration: none;
    font-weight: 1000;
}

.back-link:hover {
    background-color: #0b0d14;
    color: #e87100;
}