/* Base Styles */
body,
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

/* Ensure all text elements use Poppins */
body, h1, h2, h3, h4, h5, h6, p, span, div {
  font-family: 'Poppins', sans-serif;
}

/* Hero Section (Kept as provided) */
.cloud-compute-hero-section {
  background: linear-gradient(135deg, #4a0080, #0080ff);
  color: white;
  padding: 4rem 2rem;
  margin-top: -10vh;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cloud-compute-hero-content {
  position: relative;
  font-weight: 600;
  z-index: 2;
  margin-top: 15vh;
}

.cloud-compute-hero-title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cloud-compute-hero-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cloud-compute-hero-cta {
  background-color: white;
  color: #0080ff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.cloud-compute-hero-shape {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(-30deg);
  z-index: 1;
}

/* New Privacy Policy Styles */
.privacy-policy-container {
  width: 100%;
  padding: 50px 0;
  background-color: #f8f9fa;
}

.privacy-policy-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-policy-header {
  text-align: center;
  margin-bottom: 40px;
}

.privacy-policy-icon {
  font-size: 50px;
  color: #4a0080;
  margin-bottom: 15px;
}

.privacy-policy-main-title {
  color: #4a0080;
  font-size: 32px;
  margin-bottom: 10px;
}

.privacy-policy-updated {
  color: #666;
  font-style: italic;
}

.privacy-policy-intro {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #4a0080;
}

.privacy-policy-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.privacy-policy-section-title {
  background: linear-gradient(to right, #4a0080, #0080ff);
  color: white;
  padding: 15px 20px;
  margin: 0;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.privacy-policy-icon-small {
  margin-right: 10px;
}

.privacy-policy-section-content {
  padding: 25px;
}

.privacy-policy-subsection {
  color: #4a0080;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}

.privacy-policy-list {
  list-style-type: none;
  padding-left: 0;
}

.privacy-policy-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.privacy-policy-list li:last-child {
  border-bottom: none;
}

.privacy-policy-list-compact {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}

.privacy-policy-list-compact li {
  background-color: #f8f9fa;
  padding: 8px 15px;
  margin: 5px;
  border-radius: 20px;
  font-size: 14px;
}

.privacy-policy-data-type {
  margin-bottom: 25px;
}

.privacy-policy-data-title {
  color: #0080ff;
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(0, 128, 255, 0.1);
  border-radius: 20px;
  margin-bottom: 15px;
}

.privacy-policy-social-list {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}

.privacy-policy-social-list li {
  background-color: #f8f9fa;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.privacy-policy-social-list li i {
  margin-right: 10px;
  font-size: 16px;
}

.privacy-policy-social-list li:nth-child(1) i {
  color: #DB4437;
}

.privacy-policy-social-list li:nth-child(2) i {
  color: #4267B2;
}

.privacy-policy-social-list li:nth-child(3) i {
  color: #1DA1F2;
}

.privacy-policy-social-list li:nth-child(4) i {
  color: #0077B5;
}

.privacy-policy-cookies-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.privacy-policy-cookie-type {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #0080ff;
}

.privacy-policy-cookie-type h6 {
  color: #4a0080;
  margin-top: 0;
  display: flex;
  align-items: center;
}

.privacy-policy-cookie-type h6 i {
  margin-right: 10px;
  color: #0080ff;
}

.privacy-policy-cookies-table {
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.privacy-policy-cookie-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
}

.privacy-policy-cookie-row:nth-child(odd) {
  background-color: #f8f9fa;
}

.privacy-policy-cookie-header {
  background-color: #4a0080;
  color: white;
  font-weight: bold;
}

.privacy-policy-cookie-cell {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.privacy-policy-uses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.privacy-policy-use-item {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.privacy-policy-use-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-policy-use-item i {
  font-size: 24px;
  color: #0080ff;
  margin-bottom: 15px;
  display: block;
}

.privacy-policy-share-list {
  list-style-type: none;
  padding-left: 0;
}

.privacy-policy-share-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.privacy-policy-share-list li:last-child {
  border-bottom: none;
}

.privacy-policy-share-list li i {
  color: #0080ff;
  margin-right: 15px;
  font-size: 18px;
  min-width: 25px;
  text-align: center;
}

.privacy-policy-disclosure-type {
  margin-bottom: 25px;
}

.privacy-policy-legal-list {
  list-style-type: none;
  padding-left: 0;
}

.privacy-policy-legal-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.privacy-policy-legal-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0080ff;
  font-weight: bold;
}

.privacy-policy-contact {
  background: linear-gradient(135deg, #4a0080, #0080ff);
  color: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin-top: 40px;
}

.privacy-policy-contact-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.privacy-policy-contact-title i {
  margin-right: 10px;
}

.privacy-policy-contact-info {
  margin-top: 20px;
}

.privacy-policy-contact-email {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.privacy-policy-contact-email:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.privacy-policy-contact-email i {
  margin-right: 10px;
}

/* Back to top button */
.privacy-policy-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4a0080;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.privacy-policy-back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.privacy-policy-back-to-top:hover {
  background-color: #0080ff;
}

/* Responsive styles */
@media (max-width: 768px) {
  .cloud-compute-hero-title {
    font-size: 2rem;
  }
  
  .privacy-policy-main-title {
    font-size: 26px;
  }
  
  .privacy-policy-section-title {
    font-size: 18px;
  }
  
  .privacy-policy-cookie-row {
    grid-template-columns: 1fr;
  }
  
  .privacy-policy-cookie-header {
    display: none;
  }
  
  .privacy-policy-cookie-cell {
    padding: 10px;
  }
  
  .privacy-policy-cookie-cell:before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }
  
  .privacy-policy-uses-grid {
    grid-template-columns: 1fr;
  }
  
  .privacy-policy-cookies-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .privacy-policy-wrapper {
    padding: 0 15px;
  }
  
  .privacy-policy-section-content {
    padding: 15px;
  }
  
  .privacy-policy-social-list {
    flex-direction: column;
  }
  
  .privacy-policy-social-list li {
    width: 100%;
    box-sizing: border-box;
    margin: 5px 0;
  }
  
  .privacy-policy-contact {
    padding: 20px 15px;
  }
}

/* Add animation for a more interactive feel */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.privacy-policy-card {
  animation: fadeIn 0.5s ease-out forwards;
}

.privacy-policy-card:nth-child(2) {
  animation-delay: 0.1s;
}

.privacy-policy-card:nth-child(3) {
  animation-delay: 0.2s;
}

.privacy-policy-card:nth-child(4) {
  animation-delay: 0.3s;
}

.privacy-policy-card:nth-child(5) {
  animation-delay: 0.4s;
}
