.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}
.cookie-consent.show {
    display: block;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-text {
    flex: 1;
    min-width: 300px;
}
.cookie-text h3 {
    margin-bottom: 8px;
    color: #333;
}
.cookie-text p {
    color: #666;
    font-size: 1.1em;
}
.cookie-text a {
    color: #007bc5;
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 500;
    transition: all 0.3s;
}
.cookie-btn-accept {
    background: #007bc5;
    color: white;
}
.cookie-btn-accept:hover {
    background: #00629d;
}