/* ==========================
   HEADER
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #f6f4f2;
}
ul {
  padding-left: 1.25rem;
  list-style-type: disc;
}
ul li {
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(59, 56, 57, 1);
  margin: 0 0 12px;
}
.temp-header {
  border-bottom: 1px solid #d9d6d499;
  position: sticky;
  top: 0;
  background: #f6f4f2;
  z-index: 999999;
}

.temp-header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.temp-logo img {
  width: auto;
  height: 40px;
  display: block;
}

.temp-call-btn {
  padding: 0.75rem 1.25rem;
  background: #00a499;
  color: #1f1f1f;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  font-family: Inter, sans-serif;
}

.temp-call-btn:hover {
  background: #000;
  color: #fff;
}

.temp-call-btn svg {
  flex-shrink: 0;
}

/* ==========================
   HERO
========================== */

.privacy-hero {
  background: #f6f4f2;
  padding: 120px 20px 100px;
}

.privacy-container {
  max-width: 850px;
  margin: 0 auto;
}

.privacy-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.privacy-line {
  width: 50px;
  height: 2px;
  background: #00a499;
  flex-shrink: 0;
}

.privacy-label span:last-child {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #5c6070;
  font-family:
    JetBrains Mono,
    monospace;
}

.privacy-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 0.95;
  color: rgba(35, 31, 31, 1);
}

.privacy-hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
}

.privacy-date {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6b7280;
  font-family:
    JetBrains Mono,
    monospace;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .temp-header-inner {
    padding: 24px 20px;
  }

  .temp-logo img {
    width: auto;
    height: 36px;
  }

  .temp-call-btn {
    min-width: auto;
    height: 35px;
    padding: 0px 12px;
    font-size: 13px;
  }

  .privacy-hero {
    padding: 90px 20px 80px;
  }

  .privacy-hero h1 {
    font-size: 72px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {
  .privacy-header-inner {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .privacy-call-btn {
    width: 100%;
    max-width: 260px;
    min-width: auto;
    height: 52px;
  }

  .privacy-hero {
    padding: 70px 20px 60px;
  }

  .privacy-label {
    gap: 14px;
    margin-bottom: 30px;
  }

  .privacy-line {
    width: 40px;
  }

  .privacy-label span:last-child,
  .privacy-date {
    font-size: 11px;
    letter-spacing: 0.24em;
  }

  .privacy-hero h1 {
    font-size: 48px;
    line-height: 1;
  }

  .privacy-date {
    margin-top: 24px;
  }
}

/* Second Section */
/* ==========================
   SECOND SECTION
========================== */

.privacy-content-section {
  padding: 40px 20px;
}

.privacy-content-container {
  max-width: 850px;
  margin: 0 auto;
}

.privacy-content-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 70px;
  align-items: flex-start;
}

.privacy-content-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  color: rgba(35, 31, 32, 1);
  margin: 0;
}

.privacy-content-text {
  max-width: 730px;
}

.privacy-content-text p {
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(59, 56, 57, 1);
  margin: 0 0 12px;
}

.privacy-content-text p:last-child {
  margin-bottom: 0;
}

.privacy-content-text a {
  color: #00a499;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: 0.3s;
}

.privacy-content-text a:hover {
  color: #000;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .privacy-content-section {
    padding: 40px 20px;
  }

  .privacy-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .privacy-content-title h2 {
    font-size: 42px;
  }

  .privacy-content-text {
    max-width: 100%;
  }

  .privacy-content-text p {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {
  .privacy-content-section {
    padding: 40px 20px;
  }

  .privacy-content-grid {
    gap: 30px;
  }

  .privacy-content-title h2 {
    font-size: 36px;
  }

  .privacy-content-text p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 30px;
  }
}

/* ==========================
   CONTACT BOX
========================== */

.privacy-contact-box {
  border-left: 2px solid #00a499;
  padding-left: 28px;
  margin: 40px 0;
}

.privacy-contact-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: #6f4b3e;
  margin-bottom: 22px;
}

.privacy-contact-details p {
  margin: 0 0 12px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(59, 56, 57, 1);
  font-weight: 400;
}

.privacy-contact-details p:last-child {
  margin-bottom: 0;
}

.privacy-contact-details a {
  color: #00a499;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.privacy-contact-details a:hover {
  color: #000;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .privacy-contact-box {
    padding-left: 24px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {
  .privacy-contact-box {
    padding-left: 18px;
  }

  .privacy-contact-name {
    margin-bottom: 18px;
  }

  .privacy-contact-details p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ==========================
   BOTTOM CTA
========================== */

.privacy-bottom-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px 90px;
  border-top: 1px solid #d9d6d4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.privacy-back-link {
  font-family:
    JetBrains Mono,
    monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #1f1f1f;
  text-decoration: none;
  transition: 0.3s;
}

.privacy-back-link:hover {
  color: #00a499;
}

.privacy-consultation-btn {
  height: 62px;
  padding: 0 40px;
  background: #00a499;
  color: #1f1f1f;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family:
    JetBrains Mono,
    monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: 0.3s;
}

.privacy-consultation-btn:hover {
  background: #000;
  color: #fff;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .privacy-bottom-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px 70px;
  }

  .privacy-consultation-btn {
    min-width: 100%;
    width: 100%;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {
  .privacy-bottom-cta {
    gap: 30px;
    padding: 30px 20px 60px;
  }

  .privacy-back-link {
    font-size: 10px;
    letter-spacing: 0.25em;
  }

  .privacy-consultation-btn {
    min-width: auto;
    width: 100%;
    height: 56px;
    padding: 0 20px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-align: center;
    line-height: 1.5;
  }
}

/* ==========================
   FOOTER
========================== */

.privacy-footer {
  background: rgba(35, 31, 32, 1);
  color: #f6f4f2;
  padding: 70px 20px 50px;
}

.privacy-footer-container {
  max-width: 1080px;
  margin: 0 auto;
}

.privacy-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.privacy-footer-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f6f4f2;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  transition: 0.3s;
}

.privacy-footer-phone:hover {
  color: #00a499;
}

.privacy-footer-middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  padding: 60px 0 50px;
}

.privacy-footer-left h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 18px;
}

.privacy-footer-left p,
.privacy-footer-right p {
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.privacy-footer-label {
  font-family:
    JetBrains Mono,
    monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}

.privacy-footer-disclaimer {
  max-width: 720px;
  padding-bottom: 50px;
}

.privacy-footer-disclaimer p {
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.privacy-footer-disclaimer em {
  font-style: italic;
}

.privacy-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.privacy-footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.privacy-footer-links a {
  color: #f6f4f2;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 13px;
  transition: 0.3s;
}

.privacy-footer-links a:hover {
  color: #00a499;
}

.privacy-footer-links span {
  color: #8b8158;
}

.privacy-footer-copyright {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .privacy-footer-middle {
    gap: 60px;
  }

  .privacy-footer-phone {
    font-size: 24px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {
  .privacy-footer {
    padding: 60px 20px 40px;
  }

  .privacy-footer-top,
  .privacy-footer-bottom {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .privacy-footer-middle {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 50px 0 40px;
  }

  .privacy-footer-left h3 {
    font-size: 34px;
  }

  .privacy-footer-phone {
    font-size: 22px;
  }

  .privacy-footer-left p,
  .privacy-footer-right p,
  .privacy-footer-disclaimer p,
  .privacy-footer-links a,
  .privacy-footer-copyright {
    font-size: 12px;
  }
}
