@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

:root {
    --primary: #3143D3;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: var(--primary);

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 15px;
}

p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    width: 100%;
}

.container .cone {
    margin-top: 10px;

}

.brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 10px 0 40px 0;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.logo-wrapper .logo-inner {
    position: absolute;
    width: 50%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.logo-spin {
    transform-origin: center;
    animation: spin 20s linear infinite;
}
.contact-card {
    background: var(--primary);
    color: white;
    padding: 10px 40px;
    border-radius: 50px;
    margin-bottom: 15px;
    width: max-content;
    max-width: 100%;
}

.contact-card p {
    font-size: 0.95rem;

    margin-bottom: 5px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-card span {
    font-weight: 600;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-card img {
    height: 16px;
    width: auto;
    vertical-align: middle;
    margin-left: 10px;
}

.contact-card img:first-child {
    margin-left: 0;
}

.footer {
    margin-top: 50px;
}

.footer p:first-child {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer p:last-child {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .brand {
        font-size: 1.1rem;
        gap: 10px;
        flex-wrap: wrap;
    }

    .logo-wrapper {
        width: 70px;
        height: 70px;
    }

    .contact-card {
        padding: 12px 20px;
    }

    .contact-card p {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }

    .footer {
        margin-top: 5px;
    }

    .footer p:last-child {
        font-size: 0.6rem;
        line-height: 1.5;
        word-spacing: 2px;
    }
}