/* Privacy Policy Page - Simplified Styles */

/* Theme Colors */
:root {
  --brand-primary: #07B3B3;
  --brand-secondary: #33C7C7;
  --gray-light: #F3F4F6;
  --gray-medium: #6B7280;
  --gray-dark: #4B5563;
  --white: #FFFFFF;
  --black: #222A3D;
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  min-height: 100vh;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 40px;
}

.logo {
  flex-shrink: 0;
}

.logo a {
  display: block;
  text-decoration: none;
  color: var(--black);
  transition: color 0.2s ease;
}

.logo a:hover {
  color: var(--brand-primary);
}

.logo svg {
  height: 34px;
  width: 150px;
  display: block;
}

.linkedin-icon {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.linkedin-icon:hover {
  opacity: 0.7;
}

.linkedin-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--gray-dark);
}

/* Main Content */
.privacy-content {
  flex: 1;
  margin-bottom: 20px;
}

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

.privacy-header h1 {
  font-family: 'Montserrat', var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.2;
}

.privacy-header .last-updated {
  font-size: 1rem;
  color: var(--gray-medium);
  font-style: italic;
}

.privacy-body {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-primary);
}

.privacy-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin-top: 25px;
  margin-bottom: 15px;
}

.privacy-section p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 0.95rem;
  color: var(--black);
}

.privacy-section strong {
  font-weight: 600;
  color: var(--black);
}

.privacy-section a {
  color: var(--brand-primary);
  text-decoration: none;
}

.privacy-section a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  border-top: 1px solid var(--gray-light);
  padding: 30px 0;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-left p {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-bottom: 0.25rem;
}

.footer-left .privacy-link {
  color: var(--brand-primary);
  text-decoration: none;
}

.footer-left .privacy-link:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  align-items: center;
}

.compliance-icons {
  display: flex;
  gap: 15px;
}

.compliance-icon {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.compliance-icon:hover {
  opacity: 1;
}

.compliance-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-container {
    padding: 0 15px;
  }
  
  .header {
    padding: 15px 0;
    margin-bottom: 30px;
  }
  
  .privacy-header h1 {
    font-size: 2rem;
  }
  
  .privacy-content {
    margin-bottom: 20px;
  }
  
  .footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-left {
    align-items: center;
    text-align: center;
  }
  
  .compliance-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .privacy-header h1 {
    font-size: 1.75rem;
  }
  
  .privacy-section h2 {
    font-size: 1.25rem;
  }
  
  .compliance-icon img {
    width: 48px;
    height: 48px;
  }
} 