:root {
    --bg-color: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --font-family: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
    font-family: var(--font-family);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    text-align: center;
}

.container {
    max-width: 600px;
    width: 90%;
    padding: 40px;
}

.logo-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo-2 {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }

    .logo,
    .logo-2 {
        width: 90px;
        height: 90px;
    }

    .logo-group {
        gap: 10px;
    }
}