/* ===================================
   APP PRIVACY POLICY HUB STYLES - SASS VERSION
   =================================== */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, #74B6EF 0%, white 100%);
  min-height: 100vh;
  color: #2c3e50;
  line-height: 1.7;
}
body.rosary-page {
  background: linear-gradient(90deg, #EDE2CC, #fff);
}

.container-fluid {
  max-width: 1200px;
}

.hero-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin: 2rem 0;
  padding: 3rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.hero-section .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-align: left;
}
.hero-section .hero-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.policy-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}
.policy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.policy-card .policy-icon {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 1rem;
}
.policy-card .policy-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.policy-card .policy-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.policy-card .policy-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}
.policy-card .policy-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4);
  color: white;
  text-decoration: none;
}

.footer {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: #FF2D55;
}
.footer .blueish {
  color: #74B6EF;
}
.footer a {
  color: #74B6EF;
  text-decoration: none;
  font-weight: 500;
}
.footer a:hover {
  color: #3498db;
}

.privacy-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  margin: 2rem auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 900px;
}

.header-section {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e9ecef;
}
.header-section .main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.header-section .effective-date {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 500;
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
}

.intro-text {
  font-size: 1.1rem;
  color: #495057;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid #3498db;
  margin-bottom: 2rem;
}

.section-divider {
  text-align: center;
  margin: 2rem 0;
  color: #adb5bd;
  font-size: 1.5rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #3498db;
  display: inline-block;
}

.section-content {
  margin-bottom: 1.5rem;
}
.section-content p {
  margin-bottom: 1rem;
  color: #495057;
  font-size: 1rem;
}
.section-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.section-content li {
  margin-bottom: 0.5rem;
  color: #495057;
}

.contact-section {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 2rem;
}
.contact-section h2 {
  color: white;
  margin-bottom: 1rem;
}
.contact-section .contact-email {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}
.contact-section .contact-email:hover {
  color: #f8f9fa;
  text-decoration: underline;
}

.back-button {
  position: fixed;
  top: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}
.back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  color: #2c3e50;
  text-decoration: none;
}
.back-button i {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
  .hero-section {
    padding: 2rem 1rem;
    margin: 1rem 0;
  }
  .policy-card {
    padding: 1.5rem;
  }
  .privacy-content {
    padding: 2rem 1.5rem;
    margin: 1rem 0;
  }
  .main-title {
    font-size: 2rem;
  }
  .back-button {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 1rem;
    display: inline-block;
  }
}
.rosary-page .header-section .main-title {
  color: #687057;
}
.rosary-page .header-section .effective-date {
  border-radius: 0;
}
.rosary-page .intro-text {
  border-left: 0;
  background: #f8f9fa;
  border-radius: 0;
  color: #687057;
}
.rosary-page .section-title {
  color: #687057;
  border-bottom: 2px solid #687057;
}
.rosary-page .contact-section {
  border-radius: 0px;
  border: 10px solid #687057;
  background: linear-gradient(90deg, #CDA0B0, #E0CF9C);
  padding: 1rem;
}
.rosary-page .contact-section p {
  font-size: 1.5rem;
}
.rosary-page .contact-section p a {
  font-size: 1.5rem;
}
.rosary-page .contact-section p:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=styles.css.map */
