/* Page-specific styles for cookie.html */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.last-updated {
    color: #707070;
    font-size: 14px;
    margin-bottom: 30px;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #c41e3a;
    padding-bottom: 8px;
}

h3 {
    font-size: 18px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    color: #555;
    margin-bottom: 15px;
}

ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

li {
    color: #555;
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th {
    background: #c41e3a;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: bold;
}

.cookie-table td {
    border: 1px solid #e5e5e5;
    padding: 12px;
    color: #555;
}

.cookie-table tr:nth-child(even) {
    background: #f9f9f9;
}

.highlight-box {
    background: #e3f2fd;
    border-left: 4px solid #3665f3;
    padding: 15px;
    margin: 20px 0;
}

.highlight-box p {
    margin: 0;
    color: #333;
}

a {
    color: #3665f3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 20px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

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