/* Basic styling for the consent box */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 15px;
    background-color: white;
    color: #180a35;
    border-radius: 5px;
    border: 1px solid #180a35;
    font-size: 14px;
    z-index: 9999; /* Ensures the consent form is always on top */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a shadow to lift the consent box above other elements */
}

/* Styling for the paragraph and link */
.cookie-consent p {
    margin: 0 0 15px 0;
    text-align: center;
}

.cookie-policy-link {
    color: #180a35;
    text-decoration: underline;
}

.cookie-policy-link:hover {
    color: #2b1458;
}

/* Container for buttons */
.button-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Button styling */
.cookie-button {
    background-color: #180a35;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    flex: 1;
    margin: 0 5px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

.deny-button {
    background-color: white;
    color: #180a35;
    border: 1px solid #180a35;
}

.deny-button:hover {
    background-color: #f2f2f2;
}

.cookie-section{
    
    background-color: white;
    padding-top: 100px ;
    width: 100%;
    line-height: 200%;

    p{
        font-size: 1.4rem;
        padding-top: 2.0rem;
        padding-bottom: 2.0rem;
        color: #180a35;
        text-decoration: none;
    }

    h1{
        font-size: 4.0rem;
        padding-top: 2.0rem;
        padding-bottom: 2.0rem;
        color: #180a35;
        text-decoration: none;
        font-weight: 700;
    }

    h3{
        font-size: 2.0rem;
        padding-top: 2.0rem;
        padding-bottom: 2.0rem;
        color: #180a35;
        text-decoration: none;
        font-weight: 700;
    }

    h4{
        font-size: 1.6rem;
        padding-top: 2.0rem;
        padding-bottom: 2.0rem;
        color: #180a35;
        text-decoration: none;
        font-weight: 700;
    }

    li{
        font-size: 1.4rem;
        padding-top: 1.0rem;
        padding-bottom: 0.5rem;
        color: #180a35;
        text-decoration: none;
    }

    a{
        color: blue;
        text-decoration: underline;
    }



}