/* ==========================
   Privacy Policy Page Styles
========================== */

/* Push section down below fixed header (only this page) */
.privacy.section-padding {
    margin-top: 140px; /* reduced gap, looks better */
    padding-top: 40px; /* spacing inside section */
    padding-bottom: 80px;
}

/* Section Title */
.privacy .section-title h2 {
    font-size: 2.5rem;
    color: #FE7743;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.privacy .section-title p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

/* Questions */
.privacy-content h3 {
    font-size: 1rem;
    font-weight: 600;   /* bold */
    margin-top: 20px;
    margin-bottom: 10px;
    color: #000;        /* black */
}

/* Answers */
.privacy-content p {
    font-size: 1rem;
    color: #666;        /* lighter black/gray */
    margin-bottom: 20px;
}

/* Links */
.privacy-content a {
    color: #FE7743;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: #000;
}

/* Lists */
.privacy-content ul,
.privacy-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-content li {
    margin-bottom: 10px;
    color: #666; /* make list text match answer color */
}

/* Responsive */
@media (max-width: 768px) {
    .privacy.section-padding {
        margin-top: 120px; /* smaller gap on mobile */
        padding-top: 30px;
        padding-bottom: 60px;
    }
    .privacy .section-title h2 {
        font-size: 2rem;
    }
    .privacy-content h3 {
        font-size: 1rem;
    }
    .privacy-content p,
    .privacy-content li {
        font-size: 0.95rem;
    }
}
.footer-about {
    display: flex;
    flex-direction: column;
    align-items: center; /* This centers everything horizontally */
    text-align: center; /* Ensures text is centered under the video */
}

.footer-video {
    display: block;
    margin: 0 auto 10px; /* Center and space below */
    width: 200px; /* Adjust size as needed */
    height: auto;
    border-radius: 6px; /* Optional: rounded corners */
    object-fit: cover; /* Ensures video maintains aspect ratio */
   
}
  /* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: 0.3s;
  z-index: 1000;
}

.whatsapp-btn:hover {
  background-color: #20b954;
  transform: scale(1.1);
}
