* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background-color: #f9f9f9;
  color: #333;
}

.hero-section {
  background-image: url('/public/images/privacy/outsourcingdev_privacy_policy.webp');
  height: 50vh; 
  color: white;
  padding: 40px 0; 
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat; 
  background-position: center center;
}

.hero-text {
  z-index: 2;
  color: white;
  text-align: center;
}

.hero-text h1 {
  color: #ffffff;
}

.privacy-section {
  padding: 60px 20px;
  text-align: left;
  background-color: #fff;
}

.privacy-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-section h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.privacy-section h2 .outsourcing {
  color: #58dac0;
}

.privacy-section h2 .dev {
  color: #6998e1;
}

.privacy-section p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.privacy-section h3 {
  margin-top: 40px;
  margin-bottom: 10px;
  color: #6998e1;
}

.privacy-section ul {
  margin-left: 20px;
  list-style-type: disc;
}

.privacy-section ul li {
  margin-bottom: 10px;
}

.button-container {
  text-align: center;
  margin-top: 40px;
}

.button-container a {
  background-color: #58dac0;
  color: white;
  padding: 10px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button-container a:hover {
  background-color: #4bb3a4;
}

.last-updated {
  text-align: center;
  margin-top: 40px;
  color: #999;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .privacy-section .container {
    padding: 0 20px;
  }
}

.contact-button {
  text-align: center;
  margin-top: 30px;
}