/* password-generator.css */
:root {
    --bg-page: #F8FAFC;
    --bg-hero-start: #F0FDFA;
    --bg-hero-end: #F1F5F9;
    --bg-card: #FFFFFF;
    --primary-accent: #0D9488;
    --primary-accent-light: #CCFBF1;
    --text-dark: #1E293B;
    --text-medium: #475569;
    --text-light: #94A3B8;
    --border-color: #E2E8F0;
    --error-bg: #FEF2F2;
    --error-text: #DC2626;
    --warning-bg: #FFFBEB;
    --warning-text: #B45309;
    --success-bg: #ECFDF5;
    --success-text: #065F46;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-medium);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4 {
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 600;
  }
  
  h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
  }
  
  h2.section-title {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-bottom: 1.25rem;
  }
  
  h3.subsection-title {
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin-bottom: 0.75rem;
  }
  
  /* Navigation */
  .navbar {
    background-color: var(--bg-card);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem clamp(0.75rem, 3vw, 1rem);
  }
  
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .nav-logo {
    height: 32px;
    width: auto;
  }
  
  .brand-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
  }
  
  /* Navigation Toggle - NO EFFECTS */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
    z-index: 1002;
  }
  
  .nav-toggle:focus {
    outline: none;
  }
  
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  /* Navigation Slider */
  .nav-slider {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-card);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
  }
  
  .nav-slider.active {
    right: 0;
  }
  
  .slider-content {
    padding: 1.5rem;
    height: 100%;
  }
  
  .slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .slider-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
  }
  
  .slider-close:focus {
    outline: none;
  }
  
  .slider-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .slider-link {
    display: block;
    padding: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s;
  }
  
  /* REMOVED GREEN EFFECTS FROM NAVIGATION ONLY */
  .slider-link:hover, .slider-link.active {
    background-color: #f8fafc; /* Light gray instead of green */
    color: var(--text-dark); /* Keep original text color */
  }
  
  .slider-link:focus {
    outline: none;
  }
  
  /* Overlay when slider is open */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, var(--bg-hero-start) 0%, var(--bg-hero-end) 100%);
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-text p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 2rem;
    color: var(--text-medium);
  }
  
  /* Cards */
  .card {
    background-color: var(--bg-card);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .main-card {
    position: relative;
    z-index: 10;
  }
  
  .calculator-section-spacing {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
  
  /* Centered Form Container */
  .centered-form-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
  }
  
  /* Form Elements */
  .form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .input-group label {
    font-weight: 500;
    color: var(--text-dark);
  }
  
  .input-group input, .input-group select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
    background-color: white;
  }
  
  .input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  }
  
  .input-help {
    font-size: 0.875rem;
    color: var(--text-light);
  }
  
  /* Range Input */
  .range-container {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  input[type="range"] {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-accent);
    cursor: pointer;
    transition: all 0.2s;
  }
  
  input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-accent);
    cursor: pointer;
    border: none;
    transition: all 0.2s;
  }
  
  input[type="range"]::-webkit-slider-thumb:hover {
    background: #0f766e;
    transform: scale(1.1);
  }
  
  input[type="range"]::-moz-range-thumb:hover {
    background: #0f766e;
    transform: scale(1.1);
  }
  
  .value-display {
    font-weight: 600;
    color: var(--primary-accent);
    min-width: 30px;
    text-align: center;
  }
  
  /* Checkbox Groups */
  .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-accent);
    cursor: pointer;
  }
  
  .checkbox-item label {
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
  }
  
  /* Buttons */
  .calculate-button {
    background-color: var(--primary-accent);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  
  .calculate-button:hover {
    background-color: #0f766e;
    transform: translateY(-2px);
  }
  
  .cta-button {
    display: inline-block;
    background-color: var(--primary-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
  }
  
  .cta-button:hover {
    background-color: #0f766e;
    transform: translateY(-2px);
  }
  
  .copy-button {
    background: var(--primary-accent);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .copy-button:hover {
    background: #0f766e;
  }
  
  .clear-button {
    background: none;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-top: 1rem;
  }
  
  .clear-button:hover {
    background: var(--bg-page);
    color: var(--text-dark);
  }
  
  /* Password Display */
  .password-display-container {
    margin-top: 1.5rem;
  }
  
  .password-field {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .password-field input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: monospace;
    letter-spacing: 1px;
    background: var(--bg-page);
  }
  
  .password-strength {
    margin-top: 1rem;
  }
  
  .strength-meter {
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    overflow: hidden;
  }
  
  .strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s, background-color 0.3s;
    border-radius: 4px;
  }
  
  .strength-text {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  
  .entropy {
    font-size: 0.75rem;
    color: var(--text-light);
  }
  
  /* Password History */
  .password-history {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
  }
  
  .history-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem;
  }
  
  .history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .history-item:last-child {
    border-bottom: none;
  }
  
  .history-password {
    font-family: monospace;
    letter-spacing: 1px;
    font-size: 0.875rem;
  }
  
  .history-actions {
    display: flex;
    gap: 0.5rem;
  }
  
  .history-copy {
    background: none;
    border: none;
    color: var(--primary-accent);
    cursor: pointer;
    padding: 0.25rem;
  }
  
  .empty-history {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 1rem;
  }
  
  /* Overview Section */
  .overview-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--bg-hero-start) 0%, var(--bg-hero-end) 100%);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .section-subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .overview-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
  }
  
  .overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .overview-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }
  
  .overview-icon i {
    font-size: 1.75rem;
    color: var(--primary-accent);
  }
  
  .overview-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
  
  .overview-card p {
    color: var(--text-medium);
    line-height: 1.7;
  }
  
  /* Use Cases Section */
  .use-cases-section {
    padding: 4rem 1rem;
  }
  
  .use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .use-case-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
  }
  
  .use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .use-case-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .use-case-icon i {
    font-size: 1.5rem;
    color: var(--primary-accent);
  }
  
  .use-case-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
  
  .problem-solution {
    margin-bottom: 1.5rem;
  }
  
  .problem, .solution {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
  }
  
  .problem {
    background: var(--warning-bg);
    border-left: 4px solid var(--warning-text);
  }
  
  .solution {
    background: var(--success-bg);
    border-left: 4px solid var(--success-text);
  }
  
  .pro-tip {
    background: var(--primary-accent-light);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-accent);
    font-size: 0.9rem;
  }
  
  /* How-To Section */
  .how-to-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--bg-hero-start) 0%, var(--bg-hero-end) 100%);
  }
  
  .steps-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
  }
  
  .step-content {
    flex: 1;
  }
  
  .step-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
  }
  
  .step-content p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
  }
  
  .quick-tip {
    background: var(--primary-accent-light);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-accent);
    font-size: 0.9rem;
  }
  
  /* Tips Section */
  .tips-section {
    padding: 4rem 1rem;
  }
  
  .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .tip-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
  }
  
  .tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .tip-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
  }
  
  .tip-card h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-left: 1.5rem;
  }
  
  .tip-card p {
    color: var(--text-medium);
    line-height: 1.7;
  }
  
  /* Technical Section */
  .technical-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--bg-hero-start) 0%, var(--bg-hero-end) 100%);
  }
  
  .technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .technical-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
  }
  
  .technical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .technical-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--primary-accent);
  }
  
  .technical-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .technical-card p:last-child {
    margin-bottom: 0;
  }
  
  /* FAQ Section */
  .content-section {
    padding: 4rem 1rem;
  }
  
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  @media (min-width: 768px) {
    .faq-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .faq-item {
    background: var(--bg-card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
  
  .faq-item h3 {
    color: var(--primary-accent);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
  }
  
  .faq-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .faq-item p:last-child {
    margin-bottom: 0;
  }
  
  /* Notices */
  .privacy-notice {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    background-color: var(--success-bg);
    border-left: 4px solid var(--success-text);
  }
  
  .privacy-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
  }
  
  .privacy-text {
    font-size: 0.875rem;
    color: var(--text-medium);
  }
  
  /* Footer */
  .footer {
    background-color: var(--bg-card);
    padding: 2rem 1rem;
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
  }
  
  .footer-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
  }
  
  .footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .footer-links a:hover {
    color: var(--primary-accent);
  }
  
  .disclaimer {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Animations */
  .animate-on-load {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 767px) {
    .overview-grid,
    .use-cases-grid,
    .tips-grid,
    .technical-grid {
      grid-template-columns: 1fr;
    }
    
    .step {
      flex-direction: column;
      gap: 1rem;
    }
    
    .step-number {
      align-self: flex-start;
    }
    
    .footer-links {
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .calculator-section-spacing {
      margin-top: 2rem;
      margin-bottom: 1rem;
    }
    
    .password-field {
      flex-direction: column;
    }
  }
  
  @media (max-width: 480px) {
    .use-cases-grid {
      grid-template-columns: 1fr;
    }
    
    .calculate-button {
      margin-top: 1.5rem;
      margin-bottom: 1.5rem;
    }
    
    .overview-card,
    .use-case-card,
    .tip-card,
    .technical-card {
      padding: 1.5rem;
    }
  }
  
  /* Notification Styles */
  .notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--success-bg);
    color: var(--success-text);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    border-left: 4px solid var(--success-text);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .notification.show {
    opacity: 1;
  }
  
  /* Selection Styles */
  ::selection {
    background-color: var(--primary-accent-light);
    color: var(--text-dark);
  }
  
  ::-moz-selection {
    background-color: var(--primary-accent-light);
    color: var(--text-dark);
  }
  
  /* Focus Styles for Accessibility */
  button:focus,
  input:focus,
  select:focus {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
  }
  
  /* Print Styles */
  @media print {
    .navbar,
    .footer,
    .cta-button,
    .calculate-button,
    .copy-button,
    .clear-button {
      display: none !important;
    }
    
    body {
      background: white !important;
      color: black !important;
    }
    
    .card {
      box-shadow: none !important;
      border: 1px solid #ccc !important;
    }
  }
  /* Add to password-generator.css */

/* Password Types Section */
.password-types-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--bg-hero-start) 0%, var(--bg-hero-end) 100%);
  }
  
  .password-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .password-type-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
  }
  
  .password-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .password-type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .password-type-header i {
    font-size: 2rem;
    color: var(--primary-accent);
  }
  
  .password-type-header h3 {
    margin: 0;
    font-size: 1.25rem;
  }
  
  .password-type-content h4 {
    color: var(--primary-accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .password-type-content p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
  }
  
  .example-password {
    background: var(--bg-page);
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-family: monospace;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    margin-top: 1rem;
    word-break: break-all;
  }
  
  /* Security Comparison Section */
  .security-comparison-section {
    padding: 4rem 1rem;
  }
  
  .comparison-table {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-top: 2rem;
    background: var(--bg-card);
  }
  
  .comparison-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr 1.2fr;
    background: var(--primary-accent);
    color: white;
    font-weight: 600;
  }
  
  .comparison-cell {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  
  .comparison-cell:last-child {
    border-right: none;
  }
  
  .comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr 1.2fr;
    border-bottom: 1px solid var(--border-color);
  }
  
  .comparison-row:last-child {
    border-bottom: none;
  }
  
  .comparison-row .comparison-cell {
    padding: 0.75rem 1rem;
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
  }
  
  .comparison-row .comparison-cell:last-child {
    border-right: none;
  }
  
  .security-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .security-badge.weak {
    background: #FEE2E2;
    color: #DC2626;
  }
  
  .security-badge.medium {
    background: #FEF3C7;
    color: #D97706;
  }
  
  .security-badge.strong {
    background: #D1FAE5;
    color: #065F46;
  }
  
  .security-badge.very-strong {
    background: #DBEAFE;
    color: #1E40AF;
  }
  
  .security-badge.maximum {
    background: #E0E7FF;
    color: #3730A3;
  }
  
  .comparison-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--primary-accent-light);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-accent);
  }
  
  .comparison-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
  }
  
  @media (max-width: 768px) {
    .comparison-header,
    .comparison-row {
      grid-template-columns: 1fr;
    }
    
    .comparison-header {
      display: none;
    }
    
    .comparison-row {
      border-bottom: 2px solid var(--border-color);
      padding: 1rem 0;
    }
    
    .comparison-row .comparison-cell {
      border-right: none;
      border-bottom: 1px solid var(--border-color);
      padding: 0.5rem 1rem;
    }
    
    .comparison-row .comparison-cell:last-child {
      border-bottom: none;
    }
    
    .comparison-row .comparison-cell::before {
      content: attr(data-label);
      font-weight: 600;
      margin-right: 0.5rem;
      color: var(--primary-accent);
    }
  }