* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}

.cookie-policy-page {
    max-width: 900px;
    margin: 120px auto 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.cookie-policy-page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cookie-policy-page .last-updated {
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

.cookie-policy-page h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.cookie-policy-page h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.cookie-policy-page p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cookie-policy-page ul {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.cookie-policy-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-policy-page th,
.cookie-policy-page td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-policy-page th {
    background: #f9f9f9;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-policy-page td {
    color: #5a6c7d;
}

.btn-settings {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-settings:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .cookie-policy-page {
        margin: 100px 1rem 2rem;
        padding: 1.5rem;
    }

    .cookie-policy-page h1 {
        font-size: 2rem;
    }
}