* {
    margin: 0;
    padding: 0;
    box-block-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 85%, #e2e2e2 100%);
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    margin-top: -60px;
}

header {
    margin-bottom: 100px;
}

h1 {
    font-family: "Poppins", sans-serif;
    font-size: 60px;
    font-weight: 100;
    color: #1F2937;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.email {
    font-size: 24px;
    font-weight: 400;
    color: #1F2937;
    text-decoration: none;
    letter-spacing: -0.2px;
    transition: opacity 0.2s;
}

.email:hover {
    opacity: 0.7;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
}

.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    transition: transform 0.2s;
}

.logo-link:hover {
    transform: translateY(-5px);
}

.logo-wrapper {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper img {
    max-height: 100%;
    width: auto;
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.company-name {
    font-size: 14px;
    font-weight: 500;
    color: #4B5563;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.url {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #1F2937;
    letter-spacing: -0.3px;
}

@media (max-width: 768px) {
    .container {
        margin-top: 20px;
        padding: 40px 20px;
    }

    header {
        margin-bottom: 60px;
    }

    h1 {
        font-size: 48px;
        letter-spacing: -0.5px;
    }

    .email {
        font-size: 18px;
    }

    .logos-grid {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .logo-item {
        min-width: unset;
        width: 100%;
    }

    .logo-link {
        gap: 20px;
    }

    .logo-wrapper {
        height: 45px;
    }

    .url {
        font-size: 20px;
    }

    .company-name {
        font-size: 12px;
    }
}
