.cookies-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.cookies-content h1 {
    color: #2e2e2d;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 600;
    text-align: left;
}

.cookie-text {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
    text-align: left;
    font-size: 1.1rem;
    max-width: 65ch;
}

.cookie-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0 0 0 1rem;
}

.cookie-list li {
    position: relative;
    text-align: left;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cookie-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2e2e2d;
}

.browser-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.browser-list li {
    margin: 0;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.browser-list li:hover {
    transform: translateX(5px);
}

.browser-list a {
    display: flex;
    align-items: center;
    color: #2e2e2d;
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: #f5f5f5;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.browser-list a::before {
    content: '→';
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.browser-list a:hover {
    background: #fff;
    border-color: #2e2e2d;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.browser-list a:hover::before {
    transform: translateX(5px);
}

@media screen and (max-width: 768px) {
    .cookies-content {
        margin: 2rem auto;
        padding: 0 1.5rem;
    }

    .cookies-content h1 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .cookie-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .cookie-list li {
        font-size: 1rem;
    }

    .browser-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .browser-list a {
        padding: 0.7rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    .cookies-content {
        padding: 0 1rem;
    }

    .cookies-content h1 {
        font-size: 1.5rem;
    }
}