/* Legal Pages Specific Styles */

/* Header Layout */
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }
  
  /* Language Switcher */
  .language-switcher-container {
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
  }
  
  .lang-link {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #666;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: bold;
  }
  
  .lang-link:hover {
    background-color: #f0f0f0;
    color: #333;
  }
  
  .lang-link.active {
    background-color: #007bff;
    color: white;
  }
  
  .lang-separator {
    color: #ccc;
  }
  
  /* Legal Section */
  .legal-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
  }
  
  .legal-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
  }
  
  /* Legal Container */
  .legal-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  
  /* Legal Category */
  .legal-category {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
  }
  
  .legal-category h3 {
    color: #667eea;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
  }
  
  .legal-category p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
  }
  
  /* Section Divider */
  .section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 1rem 0;
  }
  
  /* Card Components */
  .contact-info-card, .contact-method-card, .info-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
  }
  
  .contact-info-card {
    border-left: 4px solid #667eea;
  }
  
  .contact-method-card {
    background: rgba(0, 123, 255, 0.05);
    border-left: 4px solid #007bff;
  }
  
  .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .card-header .icon {
    font-size: 1.5rem;
    min-width: 24px;
  }
  
  .card-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .card-title .subtitle {
    font-size: 0.85rem;
    color: #666;
    font-weight: normal;
  }
  
  .card-title h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
  }
  
  .provider-subtitle {
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
  }
  
  .address {
    font-weight: 500;
    color: #333;
  }
  
  .note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
  }
  
  /* ODR Card */
  .odr-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #28a745;
  }
  
  .odr-card a {
    color: #007bff;
    text-decoration: none;
  }
  
  .odr-card a:hover {
    text-decoration: underline;
  }
  
  /* Disclaimer Cards */
  .disclaimer-card {
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-width: 1px;
    border-style: solid;
  }
  
  .disclaimer-card.danger {
    background: rgba(220, 53, 69, 0.05);
    border-color: rgba(220, 53, 69, 0.3);
  }
  
  .disclaimer-card.warning {
    background: rgba(255, 193, 7, 0.05);
    border-color: rgba(255, 193, 7, 0.3);
  }
  
  .disclaimer-card.info {
    background: rgba(0, 123, 255, 0.05);
    border-color: rgba(0, 123, 255, 0.3);
  }
  
  .disclaimer-card h4 {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .disclaimer-card.danger h4 {
    color: #dc3545;
  }
  
  .disclaimer-card.warning h4 {
    color: #ffc107;
  }
  
  .disclaimer-card.info h4 {
    color: #007bff;
  }
  
  .content-rights {
    font-size: 0.9rem;
    color: #666;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #6c757d;
    margin-top: 1rem;
  }
  
  /* Data Processing Items */
  .data-processing-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #667eea;
  }
  
  .data-processing-item h4 {
    color: #667eea;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
  }
  
  .legal-basis {
    color: #667eea;
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }
  
  /* Storage Duration Items */
  .storage-duration-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
  }
  
  .storage-duration-item:last-child {
    border-bottom: none;
  }
  
  .storage-duration-item h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
  }
  
  /* User Rights */
  .user-rights-list {
    display: grid;
    gap: 1rem;
  }
  
  .user-right-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 8px;
    border-left: 4px solid #28a745;
  }
  
  .user-right-item h4 {
    margin: 0;
    font-size: 1rem;
    color: #28a745;
  }
  
  .rights-contact {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  
  /* Important Notice Card */
  .important-notice-card {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .important-notice-card h4 {
    color: #dc3545;
    margin: 0;
    font-size: 1.2rem;
  }
  
  /* Feature Lists */
  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 6px;
  }
  
  .feature-item .icon {
    font-size: 1.1rem;
    color: #28a745;
    min-width: 20px;
  }
  
  .service-note, .premium-note {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #6c757d;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
  }
  
  .premium-note {
    border-left-color: #ffc107;
    background: rgba(255, 193, 7, 0.05);
  }
  
  /* Premium Features */
  .premium-features {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
  }
  
  .premium-feature-item {
    background: rgba(255, 193, 7, 0.05);
    border-radius: 8px;
    padding: 1.25rem;
    border-left: 4px solid #ffc107;
  }
  
  .premium-feature-item h4 {
    color: #ffc107;
    margin: 0;
    font-size: 1rem;
  }
  
  .premium-feature-item .icon {
    color: #ffc107;
  }
  
  /* Usage Rules */
  .usage-rules {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
  }
  
  .usage-rule-item {
    border-radius: 8px;
    padding: 1.5rem;
    border-width: 1px;
    border-style: solid;
  }
  
  .usage-rule-item.danger {
    background: rgba(220, 53, 69, 0.05);
    border-color: rgba(220, 53, 69, 0.3);
  }
  
  .usage-rule-item.success {
    background: rgba(40, 167, 69, 0.05);
    border-color: rgba(40, 167, 69, 0.3);
  }
  
  .usage-rule-item.info {
    background: rgba(0, 123, 255, 0.05);
    border-color: rgba(0, 123, 255, 0.3);
  }
  
  .usage-rule-item h4 {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .usage-rule-item.danger h4 {
    color: #dc3545;
  }
  
  .usage-rule-item.success h4 {
    color: #28a745;
  }
  
  .usage-rule-item.info h4 {
    color: #007bff;
  }
  
  /* Safety Notice */
  .safety-notice {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  .safety-notice h4 {
    color: #dc3545;
    margin: 0;
    font-size: 1.1rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .legal-section {
      padding: 0.5rem;
    }
    
    .legal-section h2 {
      font-size: 1.6rem;
    }
    
    .legal-category {
      padding: 1.5rem;
    }
    
    .legal-category h3 {
      font-size: 1.2rem;
    }
    
    .contact-info-card, .contact-method-card, .info-card {
      padding: 1.25rem;
    }
    
    .card-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    
    .user-right-item, .storage-duration-item {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .lang-link {
      padding: 0.4rem 0.8rem;
      font-size: 0.9rem;
    }
    
    .premium-features {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .legal-category {
      padding: 1rem;
    }
    
    .contact-info-card, .contact-method-card, .info-card {
      padding: 1rem;
    }
    
    .card-header .icon {
      font-size: 1.2rem;
    }
    
    .lang-link {
      padding: 0.3rem 0.6rem;
      font-size: 0.8rem;
    }
    
    .usage-rule-item, .premium-feature-item, .data-processing-item {
      padding: 1rem;
    }
  }