@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

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

/* General styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #1a237e;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#siteLogo {
    width: 190px;
    height: auto;
    display: block;
}

nav {
    margin-top: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.4rem;
    margin-left: 0;
}

nav ul li {
    margin-right: 0;
}

nav a {
    text-decoration: none;
    color: #7580ff;
    font-weight: bold;
    transition: color 0.3s, background-color 0.3s;
}

nav a:hover {
    color: #fff;
}

.dropDown {
    position: relative;
    display: inline-block;
    margin: 1.5rem;
}

.dropDown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropDown-content a {
    color: #5763ec;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropDown-content a:hover {
    color: #fff;
    background-color: #5763ec;
}

.show {
    display: block;
}

.site-footer {
    background-color: #1a237e;
    color: #fff;
    text-align: center;
    padding: 1rem;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    margin-top: auto;
}

.cookie-notice {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(120%);
    width: min(920px, calc(100% - 32px));
    background: #ffffff;
    color: #222;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-notice.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.3rem 1.5rem;
    border-left: 6px solid #5763ec;
    border-radius: 16px;
}

.cookie-content h3 {
    margin-bottom: 0.3rem;
    color: #303f9f;
    font-size: 1.1rem;
}

.cookie-content p {
    margin: 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    border: none;
    background-color: #5763ec;
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.cookie-btn:hover {
    background-color: #303f9f;
    transform: translateY(-2px);
}

@media screen and (max-width: 700px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-btn {
        width: 100%;
    }
}