:root {
    --navy: #2D3E50;
    --terracotta: #D99A84;
    --soft-white: #F9F9F9;
    --text-gray: #666666;
    --border-light: #EEEEEE;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--soft-white);
    color: var(--navy);
    text-align: center;
}

main {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(100vh - (70px + 80px));
}

header {
    position: fixed;
    background-color: var(--navy);
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    top: 0;
    width: 90%;
    z-index: 1000;
}

.container {
    margin: 20px;
    max-width: 600px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
}

.logo-container img {
    height: 40px;
    display: block;
}

.logo-placeholder-text {
    color: white;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 1px;
    margin-top: 5px;
    margin-left: 8px
}

.logo-placeholder {
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: var(--navy);
    border-radius: 50%;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--navy);
}

p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.status-badge {
    display: inline-block;
    background-color: var(--terracotta);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    } 50% {
        transform: scale(1.15);
        opacity: 0.18;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.illustration-stub {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #fdf2f0 0%, #f7e1da 100%);
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Decorative blobs similar to the site's illustrations */
.blob {
    position: absolute;
    background: var(--terracotta);
    opacity: 0.1;
    border-radius: 50%;
    animation: breathe 4s ease-in-out infinite;
}

.blob-2 {
    animation-delay: -2s;
}

.icon-svg {
    position: relative;
    z-index: 2;
    animation: float 5s ease-in-out infinite;
}

footer {
    bottom: 0;
    width: calc(100% - 60px);
    padding: 30px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

@media screen and (max-width: 740px) {
    h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 30px 20px;
        width: 75%;
        margin-top: 90px;
    }

    p {
        font-size: 1rem;
    }

    .illustration-stub {
        height: 150px;
    }
}