* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Verdana', 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: #1a1a1a;
    color: #d0d0d0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

header {
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid #4a4a4a;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b0b0b0;
    letter-spacing: 0.05em;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.main-heading {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.main-heading span {
    display: block;
}

.subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.6;
    max-width: 600px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #4a4a4a;
}

.copyright {
    font-size: 0.85rem;
    color: #b0b0b0;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        position: relative;
    }
}