* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4f46e5;
  --primary-dark: #4338ca;
  --text-dark: #111827;
  --text-light: #6b7280;
  --bg-light: #f3f4f6;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: linear-gradient(to bottom right, #eff6ff, #e0e7ff);
  min-height: 100vh;
}

.container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

header .container {
  padding: 2rem 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.header-text h1 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.header-text p {
  font-size: 1.125rem;
  color: var(--text-light);
}

.back-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--primary-dark);
}

/* Main Content */
main {
  padding: 3rem 1rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.card {
  background-color: var(--bg-white);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.5;
}

.card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.card a:hover {
  color: var(--primary-dark);
}

/* Content Section */
.content-section {
  background-color: var(--bg-white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.content-section p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.content-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-section ul {
  list-style: disc;
  margin-left: 1.5rem;
  color: var(--text-light);
}

.content-section li {
  margin-bottom: 0.5rem;
}

.contact-box {
  background-color: #f9fafb;
  padding: 1rem;
  border-radius: 0.375rem;
  margin-top: 1rem;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.cta-section h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 0.375rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn:hover {
  background-color: #f3f4f6;
}

/* Footer */
footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 4rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  border-bottom: 1px solid #374151;
  padding-bottom: 1.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #4f46e5;
}

footer p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111827;
  color: white;
  padding: 1rem;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 50;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-content {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.875rem;
}

.cookie-banner-text a {
  color: #818cf8;
  text-decoration: none;
}

.cookie-banner-text a:hover {
  color: #a5b4fc;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.2s;
}

.cookie-btn-reject {
  background-color: transparent;
  color: white;
  border: 1px solid #4b5563;
}

.cookie-btn-reject:hover {
  background-color: #1f2937;
}

.cookie-btn-accept {
  background-color: #4f46e5;
  color: white;
}

.cookie-btn-accept:hover {
  background-color: #4338ca;
}

.cookie-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0;
  margin-left: 0.5rem;
}

.cookie-close:hover {
  color: #d1d5db;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-text h1 {
    font-size: 1.875rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

