* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

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

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #203556;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out forwards;
}

.logo {
    margin-bottom: 30px;
    text-align: center;
}

.company-logo {
    max-width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
}

h1 {
    color: #07777F;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.message {
    margin-bottom: 40px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.highlight {
    color: #00B9BC;
    font-weight: bold;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    margin-left: 5px;
}

.info-icon {
    color: #07777F;
    cursor: help;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.info-icon:hover {
    color: #00B9BC;
}

.tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background-color: #07777F;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #07777F transparent transparent transparent;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.qodef-qi-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 20px;
    line-height: 2em;
    font-weight: 500;
    text-decoration: none;
    text-transform: none;
    color: #203556;
    background-color: transparent;
    border: 2px solid #203556;
    border-radius: 22px;
    outline: 0;
    transition: color .25s ease-in-out, 
                background-color .25s ease-in-out, 
                border-color .25s ease-in-out;
    padding: 10px 30px;
}

.qodef-qi-button:hover {
    background-color: #203556;
    color: white;
}

.qodef-qi-button .qodef-m-text {
    position: relative;
    align-self: center;
    padding: 10px 10px 10px 30px;
}

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

    .message {
        font-size: 1rem;
        padding: 0 20px;
    }

    .qodef-qi-button {
        font-size: 18px;
        padding: 8px 24px;
    }

    .company-logo {
        max-width: 200px;
    }

    .tooltip-text {
        width: 250px;
        font-size: 0.85rem;
    }
}