.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    color: #000000;
    padding: 30px;
    z-index: 9999;
    border-radius: 10px;
    box-shadow: 0 2px 25px 2px rgba(106, 129, 140, 0.1);
    max-width: 1200px;
    margin: 0 auto 15px;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent p {
  margin: 0;
  flex: 1;
  font-size: 18px;
  max-width: 80%;
}

.cookie-consent-buttons {
    max-width: 17%;
}

.cookie-consent-btn {
  width: 100%;
}

@media (max-width: 600px) {
    
    .cookie-consent {
        padding: 12px;
        margin: 4px;
    }

    .cookie-consent p {
        max-width: 100%;
        font-size: 13px;
    }

    .cookie-consent-buttons {
        max-width: 100%;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
}