body {
    background-color: #000000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}



.container {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

#automation-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

h1, h2 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2rem;
    color: #aaa;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #888;
}

.company-number {
    font-size: 0.8rem;
    color: #888;
    margin-top: -1rem;
}

.summary p {
    font-size: 1.4rem;
    color: #ccc;
}

.contact p {
    color: #ccc;
}

.contact p b {
    color: #fff;
}

/* Animations */
.fade-in {
    animation: fadeIn 2s ease-in-out;
}

.fade-in-delay-1 {
    animation: fadeIn 2s ease-in-out 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 2s ease-in-out 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
