/* Body font */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* Navbar spacing */
body::before {
  content: "";
  display: block;
  height: 80px;
}

/* Navbar styling */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  background: linear-gradient(90deg, #f5f7fa, #e0eafc);
  padding: 1rem 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.6rem;
  color: #1a2a6c;
  transition: transform 0.3s ease, color 0.3s ease;
}

.navbar-brand img {
  border-radius: 50%;
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: #ff8c00;
}

.navbar-nav .nav-link {
  color: #1a2a6c;
  font-weight: 500;
  margin-left: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ff8c00;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: #ff8c00;
}

/* Toggler icon */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2810, 34, 70, 0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Home Section */
.home-section {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa, #e0eafc);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 2rem;
  text-align: center;
}

.home-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s forwards 0.3s;
}

.home-content p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s forwards 0.6s;
}

.home-content .btn-primary {
  background: linear-gradient(90deg, #1a2a6c, #ff8c00);
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s forwards 0.9s;
}

.home-content .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Floating shapes */
.floating-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 140, 0, 0.1);
  border-radius: 50%;
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 70%;
  left: 80%;
  background: rgba(26, 42, 108, 0.1);
  animation-delay: 3s;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .home-content h1 {
    font-size: 2.2rem;
  }
  .home-content p {
    font-size: 1rem;
  }
  .home-content .btn-primary {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
}

/* Who We Are Section */
.who-we-are-section {
  width: 100%;
  background: #f9fbff;
  padding: 120px 2rem;
  position: relative;
  overflow: hidden;
}

.who-we-are-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.3s;
}

.who-we-are-section p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.6s;
}

.who-we-are-section .btn-primary {
  background: linear-gradient(90deg, #1a2a6c, #ff8c00);
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.9s;
}

.who-we-are-section .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Image and hover effect */
.image-wrapper {
  position: relative;
  overflow: hidden;
}

.who-image {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.who-image:hover {
  transform: scale(1.05) rotate(0.5deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* Floating decorative circles */
.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.circle1 {
  width: 100px;
  height: 100px;
  background: #ff8c00;
  top: 10%;
  left: 10%;
}

.circle2 {
  width: 150px;
  height: 150px;
  background: #1a2a6c;
  bottom: 15%;
  right: 5%;
  animation-delay: 3s;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Fade in up animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .who-we-are-section h2 {
    font-size: 2.2rem;
  }
  .who-we-are-section p {
    font-size: 1rem;
  }
  .who-we-are-section .btn-primary {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
  .image-wrapper {
    margin-bottom: 30px;
  }
}

/* Core Values / Mini Feature Cards */
.core-values {
  margin-top: 50px;
}

/* Feature Cards */
.features-row .feature-card {
  background: #ffffff;
  padding: 20px 5px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 9px 25px rgba(0,0,0,0.08);
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.feature-card h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a2a6c;
}

/* Responsive */
@media(max-width: 768px) {
  .content-wrapper {
    padding: 30px;
  }

  .content-wrapper h2 {
    font-size: 2.2rem;
  }

  .features-row .feature-card {
    padding: 18px;
  }
}

/* Services Section */

.services-section {
  width: 100%;
  background: #f9fbff;  /* same as newsletter section */
  padding: 80px 2rem;   /* top/bottom padding like newsletter */
  text-align: center;    /* center the content */
  position: relative;    /* for any floating shapes */
}

.services-section h2 {
  font-size: 2.5rem;    /* same as newsletter h2 */
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.services-section p {
  font-size: 1.1rem;    /* same as newsletter p */
  color: #555;
  margin-bottom: 30px;
}


.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.service-card h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #1a2a6c;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #555;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.service-list li {
  background: #f0f4ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #1a2a6c;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}

.service-list li:hover {
  background: #1a2a6c;
  color: #fff;
}


/* Newsletter / Stay Updated Section */
.newsletter-section {
  width: 100%;
  background: #f9fbff;
  padding: 80px 2rem;
  text-align: center;
}

.newsletter-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.newsletter-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-form .input-group {
  max-width: 400px;
  width: 100%;
}

.newsletter-form input {
  padding: 0.8rem 1rem;
  border-radius: 50px;
  border: 1px solid #ccc;
  outline: none;
  width: 400px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  border-color: #1a2a6c;
  box-shadow: 0 0 5px rgba(26, 42, 108, 0.3);
}

.button-group {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.newsletter-form .btn-primary {
  background: linear-gradient(90deg, #1a2a6c, #ff8c00);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.newsletter-form .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.newsletter-form .btn-secondary {
  background: #ffffff;
  color: #1a2a6c;
  border: 2px solid #1a2a6c;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.newsletter-form .btn-secondary:hover {
  background: #1a2a6c;
  color: #ffffff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 576px) {
  .newsletter-form .button-group {
    flex-direction: column;
    gap: 10px;
  }
}

/* Why Choose Us Section */
.why-choose-us-section {
  width: 100%;
  background: linear-gradient(135deg, #f5f7fa, #e0e8f0);
  padding: 100px 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Floating Background Circles */
.floating-bg {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.circle1 {
  width: 120px;
  height: 120px;
  background: #ff8c00;
  top: 10%;
  left: 5%;
}

.circle2 {
  width: 180px;
  height: 180px;
  background: #1a2a6c;
  bottom: 10%;
  right: 5%;
  animation-delay: 3s;
}

/* Section Content */
.why-choose-us-section .container {
  position: relative;
  z-index: 2; /* Ensure content stays above floating circles */
}

.why-choose-us-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.why-choose-us-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Choose Card */
.choose-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.choose-card .icon {
  font-size: 3rem;
  color: #ff8c00;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.choose-card:hover .icon {
  transform: scale(1.2) rotate(10deg);
}

.choose-card h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.choose-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-us-section {
    padding: 60px 2rem;
  }
  .why-choose-us-section h2 {
    font-size: 2.2rem;
  }
  .why-choose-us-section p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

/* FAQ Section */
.faq-section {
  width: 100%;
  background: #f9fbff;
  padding: 100px 2rem;
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2a6c;
}

.faq-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(26, 42, 108, 0.05);
}

.faq-question h5 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a2a6c;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff8c00;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 25px 20px 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Active FAQ */
.faq-item.active .faq-answer {
  max-height: 500px; /* enough to fit content */
  opacity: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 576px) {
  .faq-section h2 {
    font-size: 2.2rem;
  }
  .faq-section p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

/* Contact Section */
.contact-section {
  width: 100%;
  background: #f5f7fa;
  padding: 100px 2rem;
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Contact Form */
.contact-form {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-form .form-control {
  padding: 0.8rem 1rem;
  border-radius: 50px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #1a2a6c;
  box-shadow: 0 0 5px rgba(26,42,108,0.3);
}

.contact-form button {
  background: linear-gradient(90deg, #1a2a6c, #ff8c00);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Contact Info */
.contact-info {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-info .info-item {
  margin-bottom: 25px;
}

.contact-info .info-item h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 10px;
}

.contact-info .info-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-section {
    padding: 60px 2rem;
  }
  .contact-section h2 {
    font-size: 2.2rem;
  }
  .contact-section p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .contact-form, .contact-info {
    margin-bottom: 30px;
  }
}

/* Footer Section */
.footer-section {
  background: linear-gradient(135deg, #143d47, #1a2a6c);
  color: #ffffff;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Floating Circles */
.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.circle1 {
  width: 120px;
  height: 120px;
  background: #ff8c00;
  top: 10%;
  left: 5%;
}

.circle2 {
  width: 180px;
  height: 180px;
  background: #ffffff;
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}

.circle3 {
  width: 100px;
  height: 100px;
  background: #ffcc66;
  top: 30%;
  right: 20%;
  animation-delay: 4s;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Footer Content */
.footer-logo {
  font-size: 1.8rem;
  color: #ffcc66;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.footer-about {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 2;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.footer-links li a:hover {
  color: #ff8c00;
  transform: translateX(3px);
}

.newsletter-form input {
  border-radius: 50px;
  border: none;
  padding: 0.5rem 1rem;
  flex: 1;
  outline: none;
}

.newsletter-form button {
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  border: none;
  background: #ff8c00;
  color: #fff;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #ffd066;
  color: #1a2a6c;
  transform: scale(1.05);
}

.social-icons {
  display: flex;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.social-icon {
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #ff8c00;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  .d-flex.flex-md-row {
    flex-direction: column !important;
    gap: 15px;
  }
}

/* Footer Bottom Centered */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom .social-icons {
  display: flex;
  gap: 15px;
}

.footer-bottom .social-icons i {
  font-size: 1.2rem;
  color: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-bottom .social-icons i:hover {
  color: #ff8c00;
  transform: scale(1.2);
}

/* Subscribe Button */
.btn-subscribe {
  background: linear-gradient(90deg, #1a2a6c, #ff8c00);
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-subscribe:hover {
  background: linear-gradient(90deg, #ff8c00, #ffd066);
  color: #1a2a6c;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

/* Adjust heading color for contrast */
h5.mb-3 {
  font-size: 1rem;
  text-transform: uppercase;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Terms & Conditions Section */
.terms-section {
  width: 100%;
  background: #f9fbff; /* same as FAQ background */
  padding: 100px 2rem;
}

.terms-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2a6c; /* same as FAQ heading color */
  margin-bottom: 20px;
  text-align: center;
}

.terms-section p.intro {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-item {
  background: #ffffff; /* white background like FAQ items */
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 20px 25px;
}

.terms-item h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a2a6c; /* same as FAQ heading */
  margin-bottom: 10px;
}

.terms-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Optional hover effect */
.terms-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 576px) {
  .terms-section h2 {
    font-size: 2.2rem;
  }
  .terms-section p.intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .terms-item h5 {
    font-size: 1.1rem;
  }
  .terms-item p {
    font-size: 0.95rem;
  }
}

/* Privacy Policy Section - same style as Terms & Conditions */
.privacy-section {
  width: 100%;
  background: #f9fbff; /* same as FAQ */
  padding: 100px 2rem;
}

.privacy-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
  text-align: center;
}

.privacy-section p.intro {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-item {
  background: #ffffff;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 20px 25px;
}

.privacy-item h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a2a6c;
  margin-bottom: 10px;
}

.privacy-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

.privacy-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 576px) {
  .privacy-section h2 {
    font-size: 2.2rem;
  }
  .privacy-section p.intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .privacy-item h5 {
    font-size: 1.1rem;
  }
  .privacy-item p {
    font-size: 0.95rem;
  }
}


