/* Privacy Policy Specific Styles */
.privacy-hero {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.privacy-hero .container {
  position: relative;
  z-index: 2;
}

.privacy-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.privacy-hero .subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.privacy-content {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Policy Block Styles */
.policy-block {
  margin-bottom: 4rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.policy-block:last-child {
  margin-bottom: 0;
}

/* Block Header Styles */
.block-header {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.block-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  opacity: 0.3;
}

.block-header > * {
  position: relative;
  z-index: 2;
}

.block-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.block-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.block-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Policy Cards Grid */
.policy-cards {
  padding: 3rem 2rem;
  display: grid;
  gap: 2rem;
}

.policy-card {
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ff6b35, #f7931e);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.policy-card:hover::before {
  transform: scaleY(1);
}

.policy-card:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.policy-card h3 {
  color: #ff6b35;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.policy-card p {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Update Badge */
.update-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Definitions Grid */
.definitions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.definition-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

.definition-item:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.definition-item strong {
  color: #ff6b35;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.8rem;
}

.definition-item p {
  color: #495057;
  margin: 0;
  line-height: 1.6;
}

/* Data Types */
.data-types {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.data-type {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.data-type:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.data-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.data-content strong {
  color: #ff6b35;
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.data-content p {
  color: #495057;
  margin: 0;
  line-height: 1.6;
}

/* Purpose List */
.purpose-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.purpose-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  margin-bottom: 0.8rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.purpose-list li:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.purpose-list li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Legal Basis */
.legal-basis {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.legal-basis li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  margin-bottom: 0.8rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.legal-basis li:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.legal-basis li::before {
  content: "⚖️";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

/* Sharing Cases */
.sharing-cases {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.sharing-case {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sharing-case:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.case-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Security Measures */
.security-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.security-measure {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.security-measure:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.measure-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.measure-content strong {
  color: #28a745;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.measure-content p {
  color: #495057;
  margin: 0;
  line-height: 1.6;
}

/* Retention Periods */
.retention-periods {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.retention-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.retention-item:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.retention-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6f42c1, #e83e8c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.retention-content strong {
  color: #6f42c1;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.retention-content span {
  color: #495057;
  line-height: 1.6;
}

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

.right-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.right-item:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.right-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bff, #6610f2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.right-content strong {
  color: #007bff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.right-content p {
  color: #495057;
  margin: 0;
  line-height: 1.6;
}

/* Cookie Info */
.cookie-info {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  margin-top: 1rem;
}

.cookie-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.cookie-content p {
  margin: 0;
  line-height: 1.8;
}

.policy-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.policy-link:hover {
  color: #f7931e;
  text-decoration: underline;
}

/* Notification Methods */
.notification-methods {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.notification-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.notification-method:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.method-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Contact Details */
.contact-details {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-text strong {
  color: #ff6b35;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-text span {
  color: #495057;
  line-height: 1.6;
}

/* Legal Info */
.legal-info {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  margin-top: 1rem;
}

.legal-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.legal-content p {
  margin: 0;
  line-height: 1.8;
  color: #495057;
}

/* Version Card */
.version-card {
  background: linear-gradient(135deg, #6c757d, #495057) !important;
  color: white;
  border: none !important;
}

.version-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.version-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.version-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.3rem;
}

.version-value {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-hero {
    padding: 100px 0 60px;
  }

  .privacy-hero h1 {
    font-size: 2.5rem;
  }

  .privacy-hero .subtitle {
    font-size: 1.1rem;
  }

  .policy-cards {
    padding: 2rem 1rem;
  }

  .policy-card {
    padding: 1.5rem;
  }

  .block-header {
    padding: 2rem 1rem;
  }

  .block-header h2 {
    font-size: 1.8rem;
  }

  .definitions-grid {
    grid-template-columns: 1fr;
  }

  .security-measures {
    grid-template-columns: 1fr;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }

  .version-info {
    flex-direction: column;
    text-align: center;
  }

  .data-type {
    flex-direction: column;
    text-align: center;
  }

  .security-measure {
    flex-direction: column;
    text-align: center;
  }

  .retention-item {
    flex-direction: column;
    text-align: center;
  }

  .right-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }
}
