@charset "utf-8";
/* CSS Document */

/* Cookie Banner Styles */
.cookie-banner {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Professional and widely used font stack */
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #EDEDED;
    color: #000;
    box-shadow: 0 -2px 25px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 1000;
    display: none; /* Hidden by default */
}

.cookie-content {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    max-width: 1170px;
    margin: auto;
    text-align: center; /* Center the text */
}

.cookie-btn {
    background-color: #4cae4c;
    color: #FFFFFF;
    border: none; /* Removing border for a cleaner look as the button and border are the same color */
    padding: 10px 5px;
    font-size: 16px; /* Adjusted for balanced proportion */
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 0px; /* Less space between the text and the button */
    transition: background-color 0.3s ease;
}

.cookie-btn:hover {
    background-color: #3c9f3c; /* A slightly darker shade for the hover effect */
    color: #fff;
}

.cookie-content p {
    font-size: 20px; /* Adjusted font size for a more professional appearance */
    line-height: 1.4;
    margin-bottom: 10px; /* Reduced space below the paragraph before the button */
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}