@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Yesteryear&family=Radley&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
}
@media (max-width: 767px) {
  html {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
    overscroll-behavior-y: none;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Radley", serif;
  font-size: 16px;
  line-height: 1.5;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  min-height: 100vh;
}
@media (max-width: 767px) {
  body {
    overscroll-behavior: contain;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    padding-bottom: calc(120px + env(safe-area-inset-bottom, 0));
  }
}

.container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  color: #304369;
}

a {
  color: #D9E4FC;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: rgb(151.7975609756, 181.6719512195, 246.8524390244);
  text-decoration: underline;
}

.btn {
  background-color: #D9E4FC;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: rgb(173.5317073171, 197.1146341463, 248.5682926829);
}
.btn-secondary {
  background-color: #304369;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-secondary:hover {
  background-color: rgb(43.2, 60.3, 94.5);
}
.btn-success {
  background-color: #D9E4FC;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-success:hover {
  background-color: rgb(173.5317073171, 197.1146341463, 248.5682926829);
}
.btn-danger {
  background-color: #304369;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-danger:hover {
  background-color: rgb(43.2, 60.3, 94.5);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #304369;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=password],
.form-group input[type=file],
.form-group select,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid rgb(183.2, 195.8, 222.6);
  border-radius: 4px;
  margin-bottom: 10px;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=password]:focus,
.form-group input[type=file]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D9E4FC;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.card > * {
  position: relative;
  z-index: 1;
}
.card {
  margin-bottom: 20px;
}

.alert {
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}
.alert-success {
  background-color: rgb(234.1, 240.15, 253.35);
  color: rgb(173.5317073171, 197.1146341463, 248.5682926829);
}
.alert-danger {
  background-color: rgb(120.25, 144.6333333333, 193.4);
  color: rgb(43.2, 60.3, 94.5);
}
.alert-warning {
  background-color: rgb(206.215, 213.585, 229.095);
  color: rgb(141.8585125184, 158.9509131075, 194.9214874816);
}
.alert-info {
  background-color: rgb(234.1, 240.15, 253.35);
  color: rgb(173.5317073171, 197.1146341463, 248.5682926829);
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: auto;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

img::selection {
  background: transparent;
}
img::-moz-selection {
  background: transparent;
}

svg {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

/* Policy Pages Styles */
.policy-page {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(217, 228, 252, 0.08) 0%, rgba(48, 67, 105, 0.05) 100%);
}
@media (max-width: 767px) {
  .policy-page .page-header {
    margin-bottom: 0.5rem;
  }
  .policy-page .page-header .header-content {
    padding: 1.25rem 0;
  }
}

.policy-content {
  width: 100%;
  margin: 0;
  padding: 2rem 0;
}

.container {
  position: relative;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.policy-section {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(217, 228, 252, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.policy-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(217, 228, 252, 0.2);
}
.policy-section:last-child {
  margin-bottom: 0;
}
.policy-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #304369;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .policy-section h2 {
    font-size: 1.75rem;
  }
}
.policy-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #304369;
  margin: 2rem 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.policy-section h3::before {
  content: "📖";
  color: #D9E4FC;
  font-size: 1.2rem;
  margin-right: 0.25rem;
  margin-top: 0.35rem;
}
.policy-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(48, 67, 105, 0.8);
  margin-bottom: 1.5rem;
  text-align: justify;
}
.policy-section ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}
.policy-section li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  color: rgba(48, 67, 105, 0.8);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.policy-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: #2E8BC0;
  font-weight: bold;
  font-size: 1.1rem;
}
.policy-section strong {
  color: #304369;
  font-weight: 600;
}
.policy-section a {
  color: #2E8BC0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.policy-section a:hover {
  color: #304369;
  text-decoration: underline;
}

/* Cookie Categories */
.cookie-category {
  background: linear-gradient(135deg, rgba(217, 228, 252, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 2rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(217, 228, 252, 0.15);
  position: relative;
  transition: all 0.3s ease;
}
.cookie-category h3 {
  margin-top: 0;
  color: #304369;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cookie-category h3::before {
  content: "🍪";
  font-size: 1.2rem;
}

/* Management Options */
.management-options,
.third-party-list {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.management-option,
.third-party-item {
  position: relative;
}
.management-option h4,
.third-party-item h4 {
  color: #304369;
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.management-option h4::before,
.third-party-item h4::before {
  content: "⚙️";
  font-size: 1rem;
}

.browser-links {
  background: linear-gradient(135deg, rgba(217, 228, 252, 0.03) 0%, rgba(255, 255, 255, 0.97) 100%);
  backdrop-filter: blur(5px);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 1px solid rgba(217, 228, 252, 0.1);
  transition: all 0.3s ease;
}
.browser-links:hover {
  box-shadow: 0 4px 15px rgba(217, 228, 252, 0.05);
  border-color: rgba(217, 228, 252, 0.15);
}
.browser-links h4 {
  color: #304369;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.browser-links h4::before {
  content: "🌐";
  font-size: 1.1rem;
}
.browser-links ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.browser-links li {
  padding: 0.5rem 0;
}
.browser-links li::before {
  display: none;
}
.browser-links a {
  color: #2E8BC0;
  text-decoration: none;
  font-weight: 500;
}
.browser-links a:hover {
  text-decoration: underline;
}

/* Badges */
.required-badge,
.optional-badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.required-badge {
  background: linear-gradient(135deg, #FF6B6B, #FF5722);
  color: #ffffff;
}
.required-badge::before {
  content: "⚠️";
  font-size: 0.8rem;
}
.required-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.optional-badge {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  color: #ffffff;
}
.optional-badge::before {
  content: "✨";
  font-size: 0.8rem;
}
.optional-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Contact Info */
.contact-info {
  background: linear-gradient(135deg, rgba(217, 228, 252, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(217, 228, 252, 0.15);
  transition: all 0.3s ease;
  position: relative;
}
.contact-info::before {
  content: "📧";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  opacity: 0.6;
}
.contact-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(217, 228, 252, 0.12);
  border-color: rgba(217, 228, 252, 0.25);
}
.contact-info h3 {
  color: #304369;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-info h3::before {
  content: "📞";
  font-size: 1.1rem;
}
.contact-info p {
  margin-bottom: 0.5rem;
}
.contact-info a {
  color: #D9E4FC;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
.contact-info a:hover {
  background: rgba(217, 228, 252, 0.1);
  color: #304369;
  text-decoration: none;
}

/* Last Updated */
.last-updated {
  text-align: right;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(217, 228, 252, 0.1);
  color: rgba(48, 67, 105, 0.6);
  font-style: italic;
  position: relative;
}

/* Terms Table */
.terms-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.terms-table th,
.terms-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(217, 228, 252, 0.2);
}
.terms-table th {
  background: linear-gradient(135deg, #2E8BC0, #4682B4);
  color: #ffffff;
  font-weight: 600;
}
.terms-table tr:hover {
  background: rgba(46, 139, 192, 0.02);
}

/* Highlight Boxes */
.highlight-box {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
  border-left: 4px solid #FFC107;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
}
.highlight-box h4 {
  color: #F57C00;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
}

.warning-box {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(244, 67, 54, 0.1));
  border-left: 4px solid #F44336;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
}
.warning-box h4 {
  color: #D32F2F;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-title h1 {
    font-size: 2.2rem;
  }
  .page-subtitle {
    font-size: 1.1rem;
  }
  .policy-section {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  .policy-section h2 {
    font-size: 1.75rem;
  }
  .policy-section h3 {
    font-size: 1.3rem;
  }
  .cookie-category,
  .management-option,
  .third-party-item {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  .policy-content {
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .page-title h1 {
    font-size: 1.8rem;
  }
  .policy-section {
    padding: 1.5rem 1rem;
  }
  .policy-section h2 {
    font-size: 1.5rem;
  }
  .policy-section h3 {
    font-size: 1.2rem;
  }
}
