/* Privacy Page Specific Styles */

/* Section Description */
.section-description {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(139, 195, 74, 0.08) 100%);
  border: 1px solid rgba(76, 175, 80, 0.15);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  position: relative;
  box-shadow: 0 3px 15px rgba(76, 175, 80, 0.08);
  transition: all 0.3s ease;
}

.section-description:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.12);
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%);
}

/* Concluding Text - Simple grey, center-aligned */
.section-conclusion {
  text-align: center;
  font-size: 1rem;
  color: #888;
  margin-top: 2rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* Privacy Hero */
.privacy-hero {
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  border-radius: 20px;
  padding: 3rem;
  margin: 2rem 0 4rem 0;
  text-align: center;
}

.privacy-hero .hero-icon {
  font-size: 5rem;
  color: #4CAF50;
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

/* Privacy Stats */
.privacy-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.privacy-stat {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.1);
  transition: all 0.3s ease;
}

.privacy-stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(76, 175, 80, 0.15);
}

.privacy-stat i {
  font-size: 3rem;
  color: #4CAF50;
  margin-bottom: 1rem;
}

.privacy-stat h4 {
  color: #2E7D32;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.privacy-stat p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

/* Data Collection Cards */
.data-collection {
  margin: 4rem 0;
}

.collection-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.collection-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.collection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(76, 175, 80, 0.15);
}

.collection-card i {
  font-size: 3.5rem;
  color: #4CAF50;
  margin-bottom: 1.5rem;
  display: block;
}

.collection-card h4 {
  color: #2E7D32;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.collection-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}

.collection-card li {
  padding: 0.5rem 0;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.collection-card li::before {
  content: "•";
  color: #4CAF50;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 1.2rem;
}

.collection-card li:last-child {
  border-bottom: none;
}

.collection-card strong {
  color: #2E7D32;
  font-weight: 600;
}

/* Security Features */
.security-features {
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
}

/* Ensure all security grid icons are visible */
.security-grid .security-item i {
  font-size: 3rem !important;
  color: #4CAF50 !important;
  margin-bottom: 1rem !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.security-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(76, 175, 80, 0.15);
}

.security-item i {
  font-size: 3rem;
  color: #4CAF50;
  margin-bottom: 1rem;
  display: block;
  opacity: 1;
  visibility: visible;
}

.security-item h5 {
  color: #2E7D32;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.security-item p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Rights Section */
.rights-section {
  margin: 4rem 0;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.right-item {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.1);
  transition: all 0.3s ease;
}

.right-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(76, 175, 80, 0.15);
}

.right-item i {
  font-size: 2.5rem;
  color: #4CAF50;
  margin-bottom: 1rem;
}

.right-item h5 {
  color: #2E7D32;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Contact Privacy */
.contact-privacy {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-privacy h3 {
  color: #2E7D32;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: block;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.contact-info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  border-color: rgba(76, 175, 80, 0.3);
}

.contact-info-item i {
  font-size: 2rem;
  color: #4CAF50;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-info-item p {
  margin: 0;
  color: #666;
  font-weight: 500;
}

/* Story Grid */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.story-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.story-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.story-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
}

.story-item:hover::before {
  transform: scaleX(1);
}

.story-item i {
  font-size: 2.5rem;
  color: #4CAF50;
  margin-bottom: 1rem;
  display: block;
}

.story-item h4 {
  color: #2E7D32;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.story-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.rights-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rights-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.rights-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
}

.rights-item:hover::before {
  transform: scaleX(1);
}

.rights-item i {
  font-size: 2.5rem;
  color: #4CAF50;
  margin-bottom: 1rem;
  display: block;
}

.rights-item h4 {
  color: #2E7D32;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.rights-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .collection-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .collection-card li {
    padding-left: 1.2rem;
    font-size: 0.9rem;
  }
  
  .collection-card li::before {
    font-size: 1rem;
    top: 0.4rem;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .rights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .privacy-hero {
    padding: 2rem;
  }
  
  .privacy-hero .hero-icon {
    font-size: 4rem;
  }
  
  .section-description {
    padding: 1rem 1.2rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
  }
  
  .section-conclusion {
    font-size: 0.9rem;
    margin-top: 1.5rem;
  }
}

/* New sections styles */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
  margin: 2rem 0;
}

.sharing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.sharing-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 175, 80, 0.1);
  position: relative;
  overflow: hidden;
}

.sharing-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.sharing-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(76, 175, 80, 0.15);
}

.sharing-item:hover::before {
  transform: scaleX(1);
}

.sharing-item i {
  font-size: 2.5rem;
  color: #2E7D32;
  margin-bottom: 1rem;
}

.sharing-item h4 {
  color: #2E7D32;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.sharing-item p {
  color: #666;
  font-size: 0.9rem;
}

.retention-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.retention-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 175, 80, 0.1);
  position: relative;
  overflow: hidden;
}

.retention-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.retention-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(76, 175, 80, 0.15);
}

.retention-item:hover::before {
  transform: scaleX(1);
}

.retention-item i {
  font-size: 2rem;
  color: #2E7D32;
  margin-bottom: 1rem;
}

.retention-item p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.cookie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookie-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 175, 80, 0.1);
  position: relative;
  overflow: hidden;
}

.cookie-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cookie-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(76, 175, 80, 0.15);
}

.cookie-item:hover::before {
  transform: scaleX(1);
}

.cookie-item i {
  font-size: 2rem;
  color: #2E7D32;
  margin-bottom: 1rem;
}

.cookie-item p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.usage-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 175, 80, 0.1);
  position: relative;
  overflow: hidden;
}

.usage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.usage-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(76, 175, 80, 0.15);
}

.usage-item:hover::before {
  transform: scaleX(1);
}

.usage-item i {
  font-size: 2.5rem;
  color: #2E7D32;
  margin-bottom: 1rem;
}

.usage-item h4 {
  color: #2E7D32;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.usage-item p {
  color: #666;
  font-size: 0.9rem;
}

.processing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.processing-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 175, 80, 0.1);
  position: relative;
  overflow: hidden;
}

.processing-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.processing-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(76, 175, 80, 0.15);
}

.processing-item:hover::before {
  transform: scaleX(1);
}

.processing-item i {
  font-size: 2rem;
  color: #2E7D32;
  margin-bottom: 1rem;
}

.processing-item h4 {
  color: #2E7D32;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.processing-item p {
  color: #666;
  font-size: 0.9rem;
}

.third-party-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.third-party-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 175, 80, 0.1);
  position: relative;
  overflow: hidden;
}

.third-party-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.third-party-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(76, 175, 80, 0.15);
}

.third-party-item:hover::before {
  transform: scaleX(1);
}

.third-party-item i {
  font-size: 2.5rem;
  color: #2E7D32;
  margin-bottom: 1rem;
}

.third-party-item h4 {
  color: #2E7D32;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.third-party-item p {
  color: #666;
  font-size: 0.9rem;
}

.breach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.breach-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 175, 80, 0.1);
  position: relative;
  overflow: hidden;
}

.breach-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.breach-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(229, 62, 62, 0.15);
}

.breach-item:hover::before {
  transform: scaleX(1);
}

.breach-item i {
  font-size: 2rem;
  color: #4CAF50;
  margin-bottom: 1rem;
}

.breach-item h4 {
  color: #2E7D32;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.breach-item p {
  color: #666;
  font-size: 0.9rem;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.compliance-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 175, 80, 0.1);
  position: relative;
  overflow: hidden;
}

.compliance-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.compliance-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(76, 175, 80, 0.15);
}

.compliance-item:hover::before {
  transform: scaleX(1);
}

.compliance-item i {
  font-size: 2rem;
  color: #2E7D32;
  margin-bottom: 1rem;
}

.compliance-item h4 {
  color: #2E7D32;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.compliance-item p {
  color: #666;
  font-size: 0.9rem;
}

/* Responsive design for new sections */
@media (max-width: 1024px) and (min-width: 769px) {
  .usage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}

@media (max-width: 768px) {
  .usage-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 1rem;
  }
  
  .processing-grid,
  .third-party-grid,
  .breach-grid,
  .compliance-grid,
  .sharing-grid,
  .retention-grid,
  .cookie-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .usage-item,
  .processing-item,
  .third-party-item,
  .breach-item,
  .compliance-item,
  .sharing-item,
  .retention-item,
  .cookie-item {
    padding: 1.5rem;
  }
}
