/* Privacy Policy Styles */

/* Animations */
@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateSlowReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* Base body styles for privacy page */
body {
  font-family: 'Inter', sans-serif;
  background: #f5f7f9;
  margin: 0;
}

/* Hero Section */
.privacy-hero {
  position: relative;
  width: 100%;
  padding: 140px 40px 80px;
  background: linear-gradient(135deg, #1F7F95 0%, #176b7d 45%, #2d6b1a 80%, #457A00 100%);
  overflow: hidden;
  text-align: center;
}

/* Large circle top-right */
.privacy-hero::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  top: -140px;
  right: -100px;
  pointer-events: none;
}

/* Small circle bottom-left */
.privacy-hero::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(179, 207, 109, 0.2);
  bottom: -80px;
  left: -60px;
  pointer-events: none;
}

.privacy-hero-deco-diamond {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(241, 176, 102, 0.25);
  transform: rotate(45deg);
  top: 60px;
  left: 8%;
  pointer-events: none;
}


.privacy-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.privacy-title {
  color: #ffffff;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.3px;
  margin: 0;
}

.privacy-date {
  color: rgba(179, 207, 109, 0.9);
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

/* Main Content */
main {
  padding: 30px 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* Card Styles */
.card {
  margin-bottom: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card .card-content {
  display: none;
}

.card.open .card-content {
  display: block;
}

/* Container */
.container {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Contact Section */
.privacy-contact-wrapper {
  margin-bottom: 4rem;
  padding-top: 33px;
  border-top: 1px solid rgba(131, 199, 206, 0.30);
}

/* Grids */
.retention-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Card Components */
.card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow:
    0px 2px 4px -2px rgba(0, 0, 0, 0.10),
    0px 4px 6px -1px rgba(0, 0, 0, 0.10);
  outline: 1px rgba(131, 199, 206, 0.30) solid;
  outline-offset: -1px;
  overflow: hidden;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  cursor: pointer;
}

.card-header h2 {
  color: #1F7F95;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}

.card-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.card.open .card-content {
  padding: 16px 24px 24px 24px;
  max-height: 1000px;
}

/* Chevron */
.chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid #F1B066;
  border-bottom: 2px solid #F1B066;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.card.open .chevron {
  transform: rotate(-135deg);
}

/* Text Styles */
.intro-text {
  color: #364153;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 12px 0;
}

.small-text {
  color: #364153;
  font-size: 14px;
  line-height: 20px;
}

.strong-text {
  color: #364153;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

/* Controller Box */
.controller-box {
  padding: 16px 16px 16px 20px;
  background: rgba(131, 199, 206, 0.10);
  border-radius: 10px;
  border-left: 4px solid #1F7F95;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.controller-name {
  color: #1F7F95;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin: 0;
}

.address-main {
  color: #364153;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.address-note {
  color: #5C5F30;
  font-size: 14px;
  font-style: italic;
  line-height: 20px;
  margin: 0;
}

.controller-email {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  color: #364153;
}

.controller-email a {
  color: #6EA9F8;
  text-decoration: none;
}

.controller-email a:hover {
  text-decoration: underline;
}

/* Data List */
.data-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.data-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #364153;
  font-size: 16px;
  line-height: 26px;
}

.data-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #457A00;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

.data-list.orange li::before {
  background-color: #F1B066;
}

/* Info Box */
.info-box {
  background: rgba(179, 207, 109, 0.20);
  border-radius: 4px;
  padding: 12px;
  color: #5C5F30;
  font-size: 16px;
  font-style: italic;
  line-height: 26px;
}

/* Legal Box */
.legal-box {
  background: rgba(110, 169, 248, 0.10);
  border-left: 4px solid #6EA9F8;
  border-radius: 10px;
  padding: 16px 16px 16px 20px;
  margin-bottom: 12px;
}

.legal-box h3 {
  margin: 0 0 4px 0;
  color: #1F7F95;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

.legal-box p {
  margin: 0;
  color: #364153;
  font-size: 14px;
  line-height: 20px;
}

.note-text {
  color: #5C5F30;
  font-size: 16px;
  font-style: italic;
  line-height: 26px;
  margin-top: 12px;
}

/* Retention Box */
.retention-box {
  background: rgba(131, 199, 206, 0.10);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
  text-align: center;
}

.retention-box h3 {
  margin: 0 0 8px 0;
  color: #1F7F95;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

.retention-highlight {
  color: #F1B066;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.07px;
}

.retention-note {
  margin: 0;
  color: #5C5F30;
  font-size: 14px;
  line-height: 20px;
}

/* Rights List */
.rights-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rights-list li {
  background: rgba(179, 207, 109, 0.20);
  padding: 8px 12px 8px 24px;
  border-radius: 4px;
  position: relative;
  color: #364153;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.rights-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #457A00;
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 14px;
}

/* Notice Box */
.notice-box {
  background: rgba(241, 176, 102, 0.20);
  border-left: 4px solid #F1B066;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 12px;
}

.notice-title {
  color: #364153;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin: 0 0 4px 0;
}

.notice-text {
  color: #364153;
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 4px 0;
}

.notice-link {
  color: #6EA9F8;
  font-size: 16px;
  line-height: 26px;
  text-decoration: none;
}

.notice-link:hover {
  text-decoration: underline;
}

/* Text Link */
.text-link {
  color: #6EA9F8;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* Info Box (Blue variant) */
.info-box {
  background: rgba(110, 169, 248, 0.10);
  border-radius: 10px;
  padding: 16px;
  margin-top: 12px;
}

.info-title {
  color: #1F7F95;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin: 0 0 8px 0;
}

.proof-list {
  margin: 8px 0 0 16px;
  padding: 0;
}

.proof-list li {
  color: #364153;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
}

/* Consent Card */
.consent-card {
  background: white;
  padding: 24px 24px 24px 28px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow:
    0px 2px 4px -2px rgba(0, 0, 0, 0.10),
    0px 4px 6px -1px rgba(0, 0, 0, 0.10);
}

.border-orange {
  border-left: 4px solid #F1B066;
}

.border-blue {
  border-left: 4px solid #6EA9F8;
}

.border-green {
  border-left: 4px solid #B3CF6D;
}

/* Checkbox */
.checkbox-wrapper {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #0A0A0A;
  cursor: pointer;
}

.checkbox-wrapper input {
  width: 16px;
  height: 16px;
  accent-color: #1F7F95;
  margin-top: 3px;
}

/* Contact Section */
.privacy-contact-box {
  padding: 24px;
  border-radius: 10px;
  background: linear-gradient(90deg,
      rgba(31, 127, 149, 0.10) 0%,
      rgba(69, 122, 0, 0.10) 100%);
}

.privacy-contact-text {
  font-size: 14px;
  line-height: 20px;
  color: #364153;
  margin: 0;
  text-align: center;
}

.privacy-email {
  color: #6EA9F8;
  font-weight: 600;
  text-decoration: none;
}

.privacy-email:hover {
  text-decoration: underline;
}

/* Typography */
.main-title {
  color: #1F7F95;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0.4px;
}

.card-title {
  color: #1F7F95;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}

.card-description {
  color: #4A5565;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.highlight {
  color: #1F7F95;
  font-weight: 600;
}

.legal {
  color: #5C5F30;
  font-size: 12px;
  font-style: italic;
  line-height: 16px;
  margin: 0;
}

/* Privacy Card */
.privacy-card {
  width: 100%;
  max-width: 848px;
  background: #ffffff;
  border-radius: 10px;
  outline: 1px solid rgba(131, 199, 206, 0.30);
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.10), 0px 2px 4px -2px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  font-family: Inter, sans-serif;
}

.privacy-card-header {
  padding: 0 24px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.privacy-card-title {
  color: #1F7F95;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}

.privacy-card-content {
  padding: 0 24px 24px 24px;
}

.privacy-description {
  color: #364153;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 12px;
}

/* Footer */
footer {
  position: relative;
  background: #1f7f95;
  color: #e6ebd6;
  padding: 4rem 4rem 2rem;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(179, 207, 109, .25), transparent 60%);
  z-index: 0;
}

.footer-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  z-index: 1;
}

.footer-left h3 {
  font-size: 2rem;
}

.tagline {
  color: #b3cf6d;
  margin: .6rem 0 1.6rem;
}

.desc {
  max-width: 460px;
  opacity: .85;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.block h4 {
  color: #b3cf6d;
  margin-bottom: .8rem;
}

.socials {
  display: flex;
  gap: 1rem;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-bottom {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  opacity: .7;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
  opacity: .7;
}

.footer-bottom a {
  opacity: .7;
  text-decoration: none;
  color: inherit;
}

.footer-bottom a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-circle {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(179, 207, 109, .35);
  top: 10%;
  right: 6%;
}

.footer-diamond {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(241, 176, 102, .3);
  transform: rotate(45deg);
  bottom: 12%;
  left: 8%;
}