/* Privacy Policy Page Styles */

/* Privacy Hero Section */
.privacy-hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #01357a 100%);
  color: var(--white);
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.privacy-hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.privacy-hero-section .hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.privacy-hero-section .hero-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  top: -100px;
  right: 10%;
  animation: heroFloat 20s ease-in-out infinite;
}

.privacy-hero-section .hero-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--white);
  bottom: -50px;
  left: 5%;
  animation: heroFloat 15s ease-in-out infinite reverse;
}

.privacy-hero-section .hero-shape-3 {
  width: 150px;
  height: 150px;
  background: var(--secondary-color);
  top: 40%;
  left: 10%;
  animation: heroFloat 18s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(180deg);
  }
}

.privacy-hero-section .container {
  position: relative;
  z-index: 2;
}

.privacy-hero-section .page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.privacy-hero-section .page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.privacy-hero-section .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 25px;
  border-radius: 50px;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-hero-section .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-hero-section .breadcrumb-item a:hover {
  color: var(--secondary-color);
}

.privacy-hero-section .breadcrumb-item.active {
  color: var(--white);
}

.privacy-hero-section .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* Floating Background */
.floating-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.floating-bg .float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.floating-bg .float-shape-1 {
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  top: 15%;
  right: 10%;
  animation: float 20s ease-in-out infinite;
}

.floating-bg .float-shape-2 {
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  bottom: 20%;
  left: 8%;
  animation: float 18s ease-in-out infinite reverse;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg);
  }
  50% {
    transform: translate(-15px, 15px) rotate(180deg);
  }
  75% {
    transform: translate(15px, 20px) rotate(270deg);
  }
}

/* Privacy Content */
.privacy-content {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  position: relative;
}

.privacy-content .container {
  position: relative;
  z-index: 2;
}

/* Content Card */
.content-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(2, 44, 130, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.content-card:hover {
  box-shadow: 0 15px 40px rgba(2, 44, 130, 0.12);
  transform: translateY(-5px);
}

.content-card h2 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--secondary-color);
  display: inline-block;
}

.content-card h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
}

.content-card p {
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1rem;
}

.content-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.content-card ul li {
  color: var(--dark-gray);
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.7;
}

.content-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.content-card ul li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.content-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.content-card a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Contact List */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.contact-list li {
  color: var(--dark-gray);
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  line-height: 1.7;
  font-size: 1rem;
}

.contact-list li::before {
  content: none !important;
}

.contact-list li i {
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 1.1rem;
  width: 25px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .privacy-hero-section .page-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .privacy-hero-section {
    padding: 120px 0 80px;
  }

  .privacy-hero-section .page-title {
    font-size: 2.2rem;
  }

  .content-card {
    padding: 30px 25px;
  }

  .content-card h2 {
    font-size: 1.7rem;
  }

  .content-card h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .privacy-hero-section {
    padding: 100px 0 60px;
  }

  .privacy-hero-section .page-title {
    font-size: 1.9rem;
  }

  .content-card {
    padding: 25px 20px;
  }

  .content-card h2 {
    font-size: 1.5rem;
  }

  .content-card ul li {
    padding-left: 25px;
  }

  .contact-list li {
    padding-left: 30px;
  }
}
