      .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #2c3e50;
        color: white;
        padding: 15px 20px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        display: none;
      }
      .cookie-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
      }
      .cookie-content p {
        margin: 0;
        flex: 1;
        min-width: 280px;
      }
      .cookie-content a {
        color: #4fc3f7;
        text-decoration: none;
      }
      .cookie-content a:hover {
        text-decoration: underline;
      }
      .cookie-buttons {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
      }
      .cookie-btn {
        padding: 8px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s ease;
      }
      .accept {
        background-color: #4caf50;
        color: white;
      }
      .decline {
        background-color: #f44336;
        color: white;
      }
      .cookie-btn:hover {
        opacity: 0.9;
        transform: translateY(-1px);
      }