
body {
    font-family: 'poppins', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.content {
    padding: 20px;
    line-height: 1.6;
    font-size: 17px;
    margin-top: 75px;
    margin-bottom: 30px;
}

.cookie-title {
    font-size: 22px;
    color: #ff413c;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.cookie-content {
    font-size: 16px;
    line-height: 1.6;
}

.cookie-condition {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.cookie-content span {
    display: block;
    margin-bottom: 15px;
    text-align: justify;
}

.cookie-content b {
    color: #ff413c;
}

.dot {
    list-style: none;
    padding-left: 0;
}

.dot li {
    padding-left: 1.2em;
    text-indent: -1.2em;
    margin-bottom: 10px;
}

.dot li::before {
    content: "\2022";
    color: #ff413c;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table,
th,
td {
    border: 1px solid #ddd;
}

th,
td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

a {
    color: #ff413c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .content {
        padding: 15px;
    }

    .cookie-title {
        font-size: 24px;
    }

    .cookie-content {
        font-size: 14px;
    }
}

