:root {
  --section-padding: 70px;
  --section-padding-mobile: 50px;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fafafa;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.722);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
  padding: 0 10%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-height {
  height: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 34px;
  height: auto;
  display: block;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2F00C9;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #2F00C9;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 5%;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--section-padding) + 10px) 12%;
  min-height: 75vh;
  background: white;
  margin-top: 12px;
}

.hero-content {
  max-width: 520px;
}

h1 {
  font-size: 3.4rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

h1 span {
  color: #2F00C9;
}

.subtitle {
  font-size: 1.1rem;
  margin-top: 20px;
  color: #555;
  line-height: 1.6;
}

/* Buttons */
.buttons {
  margin: 35px 0 15px;
  display: flex;
  gap: 14px;
}

.btn {
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-icon {
  flex-shrink: 0;
}

.playstore {
  background: #2F00C9;
  color: white;
}

.appstore {
  background: white;
  border: 1px solid #ccc;
  color: #111;
}

.note {
  font-size: 0.85rem;
  color: #777;
}

/* Phone Mockup */

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  position: relative;
  width: 300px;
  height: 650px;
  border: 10px solid #111;
  border-radius: 52px;
  background: white;
}

.screen {
  width: 100%;
  height: 100%;
  border-radius: 44px;
  overflow: hidden;
  position: relative;
}

.screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating Badges */

.tag {
  position: absolute;
  background: #f8f6ff;
  border: 1.5px solid #2F00C9;
  padding: 8px 14px;
  font-size: 0.85rem;
  border-radius: 12px;
  text-align: center;
  color: #111;
  font-weight: 600;
}

.tag span {
  font-weight: 400;
  font-size: 0.75rem;
  color: #555;
}

.top-tag {
  top: 112px;
  right: -58px;
}

.bottom-tag {
  bottom: 100px;
  left: -80px;
}

/* Features Section */
.features {
  padding: var(--section-padding) 10%;
  background: white;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.features-heading span {
  color: #2F00C9;
}

.features-subtitle {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tech-card {
  background: #f0eeff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-items: center;
  justify-content: center;
}

.tech-card:hover {
  transform: translateY(-4px);
  border: 1.5px solid #2F00C9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #f0eeff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F00C9;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.tech-icon {
  width: 64px;
  height: 64px;
  background: #2f00c924;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F00C9;
}

.tech-icon svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.feature-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.tech-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Why Barbers Love Section */
.why-love {
  padding: var(--section-padding) 10%;
  background: white;
}

.why-love-container {
  max-width: 800px;
  margin: 0 auto;
}

.why-love-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.why-love-heading span {
  color: #2F00C9;
}

.why-love-subtitle {
  font-size: 1.1rem;
  color: #777;
  text-align: center;
  margin-bottom: 60px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  transition: border-color 0.2s ease;
}

.benefit-card:hover {
  border-color: #2F00C9;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #2F00C9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px 0;
}

.benefit-description {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-padding) 10%;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-highlight {
  padding: var(--section-padding) 10%;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.testimonials-heading span {
  color: #2F00C9;
}

.testimonials-subtitle {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e5e5e5;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border: 1px solid #2F00C9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.quote-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  opacity: 0.6;
}

.quote-icon svg {
  width: 48px;
  height: 48px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-top: 8px;
  margin-bottom: 20px;
  padding-left: 4px;
}

.stars svg {
  width: 20px;
  height: 20px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #2F00C9;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.author-title {
  font-size: 0.85rem;
  color: #777;
}

/* Pricing Section */
.pricing {
  padding: var(--section-padding) 10%;
  background: white;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.pricing-heading span {
  color: #2F00C9;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
  border: 2px solid #2F00C9;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #1a1a2e;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px 0;
}

.pricing-card-subtitle {
  font-size: 0.9rem;
  color: #777;
  margin: 0 0 24px 0;
}

.pricing-amount {
  margin-bottom: 32px;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  display: block;
  line-height: 1;
}

.price-unit {
  font-size: 1rem;
  font-weight: 500;
  color: #777;
}

.price-period {
  font-size: 0.9rem;
  color: #777;
  display: block;
  margin-top: 4px;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px 0px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.2s ease;
  margin-bottom: 32px;
}

.pricing-btn-primary {
  background: #2F00C9;
  color: white;
}

.pricing-btn-primary:hover {
  background: #2d22ef;
}

.pricing-btn-outline {
  background: white;
  border: 1px solid #e5e5e5;
  color: #111;
}

.pricing-btn-outline:hover {
  border-color: #2F00C9;
  color: #2F00C9;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.5;
}

.pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

/* About Section */
.about {
  padding: var(--section-padding) 10%;
  background: white;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-heading span {
  color: #2F00C9;
}

.about-subtitle {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 60px;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.about-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: #f0eeff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F00C9;
  flex-shrink: 0;
}

.about-icon svg {
  width: 24px;
  height: 24px;
}

.about-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px 0;
}

.about-card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.about-cta {
  text-align: center;
  padding: 40px 28px;
  background: #f0eeff;
  border-radius: 16px;
  border: 1px solid #491ddc62;
}

.about-cta-button {
  display: inline-block;
  color: black;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 8px;
  margin-bottom: 12px;
}


.about-cta-subtitle {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

/* Support/Contact Section */
.support {
  padding: var(--section-padding) 10%;
  background: white;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
}

.support-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.support-icon {
  width: 56px;
  height: 56px;
  background: #f0eeff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F00C9;
}

.support-icon svg {
  width: 24px;
  height: 24px;
}

.support-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.support-heading span {
  color: #2F00C9;
}

.support-subtitle {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 60px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.support-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.support-card-featured {
  border: 2px solid #2F00C9;
}

.support-card-icon {
  width: 56px;
  height: 56px;
  background: #f0eeff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F00C9;
  margin: 0 auto 24px;
}

.support-card-icon svg {
  width: 24px;
  height: 24px;
}

.support-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 16px 0;
}

.support-contact {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2F00C9;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.support-contact:hover {
  color: #2d22ef;
}

.support-card-description {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.support-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.support-btn-outline {
  background: white;
  border: 1px solid #e5e5e5;
  color: #111;
}

.support-btn-outline:hover {
  border-color: #2F00C9;
  color: #2F00C9;
}

.onboarding-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.onboarding-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 16px 0;
}

.onboarding-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.onboarding-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #2F00C9;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.onboarding-btn:hover {
  background: #2d22ef;
}

/* Footer */
.footer {
  background: #111;
  color: white;
  padding: 80px 10% 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 128px;
  height: auto;
  display: block;
}

.navbar-logo-icon {
  width: 128px;
  height: auto;
  display: block;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0 0 20px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-separator {
  height: 1px;
  background: #333;
  margin: 40px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #ccc;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon:hover {
  border-color: #2F00C9;
  background: #2F00C9;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Responsive */

@media (max-width: 900px) {

  .features,
  .why-love,
  .testimonials,
  .app-highlight,
  .pricing,
  .about,
  .support {
    padding: var(--section-padding-mobile) 5%;
  }

  .features-heading,
  .why-love-heading,
  .testimonials-heading,
  .pricing-heading,
  .about-heading,
  .support-heading {
    font-size: 2.2rem;
  }

  .features-subtitle,
  .why-love-subtitle,
  .testimonials-subtitle,
  .pricing-subtitle,
  .about-subtitle,
  .support-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-card {
    padding: 24px;
  }

  .benefit-card {
    padding: 20px;
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .about-cards {
    gap: 24px;
    margin-bottom: 40px;
  }

  .about-card {
    gap: 20px;
  }

  .about-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .about-icon svg {
    width: 20px;
    height: 20px;
  }

  .about-card-title {
    font-size: 1.25rem;
  }

  .about-card-text {
    font-size: 0.95rem;
  }

  .about-cta {
    padding: 40px 24px;
  }

  .about-cta-button {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .support-card {
    padding: 32px 24px;
  }

  .onboarding-card {
    padding: 40px 24px;
  }

  .onboarding-title {
    font-size: 1.5rem;
  }

  .onboarding-description {
    font-size: 0.95rem;
  }

  .onboarding-btn {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .footer {
    padding: 60px 5% 32px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
    margin-top: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 40px;
  }

  .top-tag,
  .bottom-tag {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .top-tag {
    top: -20px;
  }

  .bottom-tag {
    bottom: -20px;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Privacy Policy Page */
.privacy-policy {
  padding: calc(var(--section-padding) + 40px) 10% var(--section-padding);
  background: white;
  min-height: 80vh;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-title {
  font-size: 3rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.2;
}

.privacy-updated {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 40px;
}

.privacy-intro {
  background: #f8f8f8;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 48px;
}

.privacy-intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.privacy-intro p:last-child {
  margin-bottom: 0;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.privacy-section {
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e5e5;
}

.privacy-section:last-child {
  border-bottom: none;
}

.privacy-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.privacy-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-top: 24px;
  margin-bottom: 12px;
}

.privacy-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.privacy-list li {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.privacy-list li::before {
  content: "•";
  color: #2F00C9;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.privacy-highlight {
  background: #f0eeff;
  padding: 16px 20px;
  border-left: 4px solid #2F00C9;
  border-radius: 4px;
  margin-top: 20px;
  font-weight: 500;
}

.privacy-contact {
  margin-top: 20px;
  padding: 24px;
  background: #f8f8f8;
  border-radius: 8px;
}

.privacy-contact p {
  margin: 0 0 12px 0;
  font-size: 1rem;
}

.privacy-contact p:last-child {
  margin-bottom: 0;
}

.privacy-contact a {
  color: #2F00C9;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.privacy-contact a:hover {
  color: #1a00a0;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .privacy-policy {
    padding: calc(var(--section-padding-mobile) + 30px) 5% var(--section-padding-mobile);
  }

  .privacy-title {
    font-size: 2.2rem;
  }

  .privacy-section-title {
    font-size: 1.5rem;
  }

  .privacy-subtitle {
    font-size: 1.1rem;
  }

  .privacy-intro {
    padding: 24px;
  }
}