#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #283149; /* navy.DEFAULT from tailwind config */
    color: white;
    padding: 20px; /* Increased padding */
    text-align: center;
    z-index: 1000;
    display: none; /* Initially hidden */
    font-family: 'Montserrat', sans-serif; /* Match body font */
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1); /* Subtle top shadow */
}

#cookie-banner p {
    margin: 0 0 15px 0; /* Increased bottom margin */
    font-size: 1rem; /* Adjusted font size */
    line-height: 1.6;
}

#cookie-banner a {
    color: #e0e5eb; /* metallic.light for link */
    text-decoration: underline;
    transition: color 0.3s ease;
}

#cookie-banner a:hover {
    color: white;
}

#cookie-banner button {
    background-color: #394867; /* navy.light for button, similar to btn-primary:hover */
    color: white;
    border: none;
    padding: 12px 25px; /* Adjusted padding */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem; /* Adjusted font size */
    font-weight: 500; /* Medium font weight */
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase; /* Match button style */
    letter-spacing: 0.5px; /* Match button style */
}

#cookie-banner button:hover {
    background-color: #1a202c; /* navy.dark for button hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}