* {
    box-sizing: border-box;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

.logo {
    width: 100px;
    padding-top: 10px;
}

.btn-wrapper {
    position: absolute;
    top: 20px;
    right: 15px;
    z-index: 1000;
    text-align: right;
    display: inline;
    background: transparent;
    box-shadow: none;
}

.close-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 17px;
    width: 120px;
    font-weight: 600;
}

.close-btn:hover {
    background: #4caf50;
    color: #fff;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 17px;
    width: 120px;
    font-weight: 600;
}

@media (max-width: 450px) {
    .btn-wrapper {
        top: 23px;
        right: 15px;
    }

    .close-btn {
        background: #e74c3c;
        color: #fff;
        border: none;
        padding: 10px 12px;
        cursor: pointer;
        border-radius: 4px;
        font-size: 15px;
        width: 95px;
        font-weight: 600;
    }
}

@media (max-width: 370px) {
    .btn-wrapper {
        right: 15px;
    }

    .close-btn {
        background: #e74c3c;
        color: #fff;
        border: none;
        padding: 10px 8px;
        cursor: pointer;
        border-radius: 4px;
        font-size: 15px;
        width: auto;
        font-weight: 600;
    }
}

.container {
    max-width: 800px;
    margin: 20px auto 40px;
    padding: 20px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

h1 {
    color: #1e3c72;
    text-align: center;
}

h2.title {
    color: #1e3c72;
    margin-top: -10px;
    text-align: center;
}

h3 {
    font-weight: 700;
}

p.domain {
    margin: -10px 0 0;
    padding: 0;
    color: #1e3c72;
    text-align: center;
}

.wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    margin: 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0 1em;
    font-size: .95em;
}

.cookie-table th, .cookie-table td {
    border: 1px solid #ccc;
    padding: 8px 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #1e3c72;
    color: #fff;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #ccc;
}

.footer-left, .footer-right {
    display: flex;
    gap: 20px;
}

@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-right {
        display: block;
        text-align: center;
    }

    .footer-left a, .footer-right a {
        display: block;
        margin: 5px 0;
    }
}

.footer-links a {
    color: #000;
    background-image: linear-gradient(#28a745, #28a745);
    background-size: 0 2px;
    background-position-y: 100%;
    background-position-x: 0;
    background-repeat: no-repeat;
    transition: background-size .4s ease-in-out;
    text-decoration: none;
    padding-bottom: 5px;
}

.footer-links a:hover, .footer-links a:focus {
    color: #28a745;
    background-size: 100% 1px;
}

