/* corporate-website/assets/css/privacy-policy-styles.css */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f8f9fa;
}

/* Hero Section */
.privacy-hero {
  background-image: url(../img/bg/hero-development.svg);
  background-size: cover;
  background-position: center center;
  position: relative;
}

.privacy-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.privacy-hero .container {
  position: relative;
  z-index: 1;
}

.privacy-hero h1 {
  font-size: 3rem;
  font-weight: 800;
}

/* Main Content Section */
.privacy-section {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.privacy-intro p {
  font-size: 1.1rem;
  color: #495057;
}

.privacy-intro .last-updated {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 600;
}

/* Section Styling */
.privacy-content-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e9ecef;
}

.privacy-content-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.privacy-content-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.privacy-content-section h2 i {
  font-size: 1.5rem;
  color: #a5c33c;
  margin-right: 1rem;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
}

.privacy-content-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 1rem;
}

.privacy-content-section p,
.privacy-content-section ul {
  font-size: 1rem;
  line-height: 1.8;
  color: #495057;
}

.privacy-content-section ul {
  list-style: none;
  padding-left: 0;
}

.privacy-content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.75rem;
}

.privacy-content-section ul li::before {
  content: '\f058'; /* FontAwesome check-circle */
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  top: 4px;
  color: #28a745; /* Success color */
  font-weight: 600;
}

/* Contact Info Box */
.contact-info-box {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: #a5c33c;
  margin-right: 1rem;
}

.contact-info-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 1rem;
  color: #495057;
  margin-bottom: 0;
}