.cookie-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.cookie-summary {
  background: linear-gradient(135deg, #004f4d, #188f8b);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.cookie-controls {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-manage-btn {
  background: #90be6d;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-manage-btn:hover {
  background: #7ba05a;
}

.cookie-section {
  background: white;
  margin-bottom: 1.5rem;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 79, 77, 0.1);
}

.cookie-section h2 {
  color: #004f4d;
  border-bottom: 2px solid #90be6d;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.cookie-section h3 {
  color: #188f8b;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.cookie-table {
  overflow-x: auto;
  margin: 1rem 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.cookie-table th {
  background: #004f4d;
  color: white;
  font-weight: 600;
}

.cookie-table tr:nth-child(even) {
  background: #f9f9f9;
}

.cookie-table tr:hover {
  background: #f1f1f1;
}

.browser-links {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
}

.browser-links h4 {
  color: #004f4d;
  margin-bottom: 0.5rem;
}

.browser-links a {
  color: #188f8b;
  text-decoration: none;
}

.browser-links a:hover {
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-item h4 {
  color: #004f4d;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: #188f8b;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-content {
    padding: 1rem;
  }

  .cookie-section {
    padding: 1.5rem;
  }

  .cookie-table {
    font-size: 0.9rem;
  }
}
