* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("../Background.jpg") center center / cover no-repeat;
    opacity: 0.18;
    z-index: -1;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1100px;
    width: 100%;
    padding: 3rem 2rem;
}

.icon-col {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.construction-icon {
    width: 100%;
    max-width: 420px;
    height: auto;
}

.content-col {
    flex: 1 1 420px;
    max-width: 480px;
}

.logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-bottom: 1.5rem;
}

.content-col p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.portfolio-link a {
    color: #ff7a1a;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.portfolio-link a:hover,
.portfolio-link a:focus {
    text-decoration: underline;
}

@media (max-width: 800px) {
    .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .content-col {
        max-width: 100%;
    }

    .logo {
        margin: 0 auto 1.5rem auto;
    }
}
