html {
    scroll-behavior: smooth;
}

.pointer-events-none {
    pointer-events: none;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hidden {
    display: none;
}


#language-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    z-index: 9999;
    background-color: white;
    display: none;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    border-radius: 8px;

    padding: 0.5rem 0;

}

        

#language-dropdown.show {
    display: block;

}

header {
    position: relative;
    z-index: 30;

}

nav {
    position: relative;
    z-index: 20;
}

.navbar-solid {
    background-color: rgb(0, 32, 160);
    transition: background-color 0.5s ease, backdrop-filter 0.5s ease;
}

.navbar-transparent {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.logo-svg {
    height: 50px;
    width: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: #1a202c;
    padding: 1rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e5e7eb;
}

.cookie-banner p {
    display: inline-block;
    margin: 0;
    font-size: 1rem;
    color: #4a5568;
}

.cookie-banner a {
    color: #3182ce;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.cookie-banner a:hover {
    text-decoration: none;
    color: #2b6cb0;
}

.cookie-banner button {
    display: inline-block;
    background-color: #38a169;
    color: white;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
    background-color: #2f855a;
}


.solution-card {
    background-color: #f8fafc;
    position: relative;
    padding: 2rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.solution-card .number {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background-color: #1e3a8a;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem 0.8rem;
    border-radius: 50%;
    font-weight: bold;
}