: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 */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
    z-index: 1002;
  }
  
  .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-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;
  }
  
  .slider-link:hover, .slider-link.active {
    background-color: var(--primary-accent-light);
    color: var(--primary-accent);
  }
  
  /* 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 {
    margin-top: -2rem;
    position: relative;
    z-index: 10;
  }
  
  /* 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, .input-group textarea {
    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, .input-group textarea: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);
  }
  
  .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  /* Buttons */
  .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;
  }
  
  .cta-button:hover {
    background-color: #0f766e;
    transform: translateY(-2px);
  }
  
  .action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background-color: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
    text-align: center;
  }
  
  .action-button:hover {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
  }
  
  .action-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  .action-button:disabled:hover {
    border-color: var(--border-color);
    color: var(--text-dark);
  }
  
  .action-button.secondary {
    background-color: var(--bg-page);
  }
  
  .print-button {
    background-color: var(--primary-accent);
    color: white;
    border: none;
  }
  
  .print-button:hover {
    background-color: #0f766e;
    color: white;
  }
  
  /* Upload Section */
  .upload-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .upload-preview {
    border: 2px dashed var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-page);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .preview-placeholder {
    color: var(--text-light);
  }
  
  .preview-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
  }
  
  /* Crop Controls */
  .crop-controls-section {
    background: var(--bg-page);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
  }
  
  .crop-instructions {
    background: var(--primary-accent-light);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    border-left: 4px solid var(--primary-accent);
  }
  
  .crop-instructions h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-accent);
  }
  
  .crop-instructions ul {
    list-style: none;
    padding-left: 0;
  }
  
  .crop-instructions li {
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
  }
  
  .crop-instructions li:before {
    content: "•";
    color: var(--primary-accent);
    position: absolute;
    left: 0;
  }
  
  /* Preview Section */
  .preview-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .preview-container {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  #source-image {
    display: none !important; /* Hide the source image completely */
  }
  
  #crop-canvas {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  .crop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: move;
  }
  
  .crop-box {
    position: absolute;
    border: 2px solid var(--primary-accent);
    background-color: rgba(13, 148, 136, 0.1);
    cursor: move;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.3);
  }
  
  .crop-handle {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary-accent);
    border: 2px solid white;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .crop-handle:hover {
    background-color: #0f766e;
    transform: scale(1.2);
  }
  
  .handle-tl { top: -6px; left: -6px; cursor: nw-resize; }
  .handle-tr { top: -6px; right: -6px; cursor: ne-resize; }
  .handle-bl { bottom: -6px; left: -6px; cursor: sw-resize; }
  .handle-br { bottom: -6px; right: -6px; cursor: se-resize; }
  .handle-t { top: -6px; left: 50%; transform: translateX(-50%); cursor: n-resize; }
  .handle-b { bottom: -6px; left: 50%; transform: translateX(-50%); cursor: s-resize; }
  .handle-l { left: -6px; top: 50%; transform: translateY(-50%); cursor: w-resize; }
  .handle-r { right: -6px; top: 50%; transform: translateY(-50%); cursor: e-resize; }
  
  .preview-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-page);
    border-top: 1px solid var(--border-color);
  }
  
  .zoom-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .zoom-controls input[type="range"] {
    width: 120px;
  }
  
  .preview-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .result-preview {
    background: var(--success-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--success-text);
  }
  
  .result-preview h4 {
    color: var(--success-text);
    margin-bottom: 1rem;
  }
  
  .result-preview img {
    max-width: 100%;
    max-height: 300px;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    margin-bottom: 1rem;
  }
  
  .result-info {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-medium);
  }
  
  /* Quick Actions */
  .quick-actions {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  
  .action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
  }
  
  @media (min-width: 480px) {
    .action-buttons {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Notices */
  .privacy-notice, .disclaimer-box {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
  }
  
  .privacy-notice {
    background-color: var(--success-bg);
    border-left: 4px solid var(--success-text);
  }
  
  .disclaimer-box {
    background-color: var(--warning-bg);
    border-left: 4px solid var(--warning-text);
  }
  
  .privacy-title, .disclaimer-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
  }
  
  .privacy-text, .disclaimer-text {
    font-size: 0.875rem;
    color: var(--text-medium);
  }
  
  /* Animations */
  .animate-on-load {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Toast Notifications */
  .toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: var(--success-bg);
    color: var(--success-text);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .toast.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .toast.error {
    background: var(--error-bg);
    color: var(--error-text);
  }
  
  .toast.warning {
    background: var(--warning-bg);
    color: var(--warning-text);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 767px) {
    .input-row {
      grid-template-columns: 1fr;
    }
    
    .action-buttons {
      grid-template-columns: 1fr;
    }
    
    .preview-actions {
      flex-direction: column;
    }
    
    .preview-controls {
      flex-direction: column;
      gap: 1rem;
      align-items: stretch;
    }
    
    .image-container {
      height: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .action-button {
      padding: 0.5rem 0.75rem;
      font-size: 0.8rem;
    }
  }
  
  /* 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;
  }
  
  /* FAQ Section */
  .content-section {
    padding: 3rem 1rem;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 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;
  }
  
  /* Overview Section */
  .overview-section {
    padding: 4rem 1rem;
    background: var(--bg-page);
  }
  
  .overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  @media (min-width: 768px) {
    .overview-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .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);
  }
  
  .overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .overview-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;
  }
  
  .overview-icon i {
    font-size: 1.5rem;
    color: var(--primary-accent);
  }
  
  .overview-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
  }
  
  .overview-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  .section-subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
  .image-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  #source-image {
    display: none !important; /* Hide the source image completely */
  }
  
  #crop-canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
  }

 

/* Tips Section Styles */
.tips-section {
    padding: 4rem 1rem;
    background: var(--bg-page);
  }
  
  .tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  @media (min-width: 768px) {
    .tips-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .tip-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
  }
  
  .tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }
  
  .tip-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;
    margin-bottom: 1rem;
  }
  
  .tip-card h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }
  
  .tip-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  /* Success Stories Section */
  .success-stories-section {
    padding: 4rem 1rem;
    background: var(--bg-card);
  }
  
  .stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  @media (min-width: 768px) {
    .stories-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .story-card {
    background: var(--bg-page);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
  }
  
  .story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }
  
  .story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .story-avatar i {
    font-size: 1.5rem;
    color: var(--primary-accent);
  }
  
  .story-info h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  
  .story-info p {
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  .story-content {
    color: var(--text-medium);
    line-height: 1.6;
  }
  
  .story-metrics {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
  }
  
  .metric {
    text-align: center;
  }
  
  .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-accent);
  }
  
  .metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Technical Section Enhancements */
  .technical-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  @media (min-width: 768px) {
    .technical-content {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .technical-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
  }
  
  .technical-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }
  
  .technical-card h3 {
    color: var(--primary-accent);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }
  
  .technical-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  /* Enhanced FAQ Section */
  .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;
  }
  
  /* Use Cases Section Enhancements */
  .use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  @media (min-width: 768px) {
    .use-cases-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .use-case-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
  }
  
  .use-case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }
  
  .use-case-card h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }
  
  .use-case-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .pro-tip {
    background: var(--primary-accent-light);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-accent);
    font-size: 0.9rem;
    color: var(--text-dark);
  }
  
  .pro-tip strong {
    color: var(--primary-accent);
  }
  
  /* Guide Section Enhancements */
  .guide-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .guide-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  
  .step-content {
    flex: 1;
  }
  
  .step-content h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .step-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .quick-tip {
    background: var(--warning-bg);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--warning-text);
    font-size: 0.9rem;
    color: var(--text-dark);
  }
  
  .quick-tip strong {
    color: var(--warning-text);
  }
  

  @media (max-width: 767px) {
    .guide-step {
      flex-direction: column;
      text-align: center;
    }
    
    .step-number {
      align-self: center;
    }
    
    .story-header {
      flex-direction: column;
      text-align: center;
    }
    
    .story-metrics {
      justify-content: center;
    }
  }
  /* Why Choose Us Section */
.content-section {
    padding: 4rem 1rem;
    background: var(--bg-page);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .section-title {
    text-align: center;
    color: var(--text-dark);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  @media (min-width: 768px) {
    .value-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .value-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-accent);
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .value-card:hover .value-icon {
    background: var(--primary-accent);
    transform: scale(1.1);
  }
  
  .value-icon i {
    font-size: 1.75rem;
    color: var(--primary-accent);
    transition: all 0.3s ease;
  }
  
  .value-card:hover .value-icon i {
    color: white;
  }
  
  .value-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
  }
  
  .value-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
  }
  
  /* Mobile-specific enhancements */
  @media (max-width: 767px) {
    .content-section {
      padding: 3rem 1rem;
    }
    
    .value-card {
      padding: 1.5rem;
      text-align: center;
    }
    
    .value-icon {
      margin-left: auto;
      margin-right: auto;
    }
    
    .value-card h3 {
      font-size: 1.2rem;
    }
    
    .value-card p {
      font-size: 0.95rem;
    }
  }
  
  /* Animation for cards when they come into view */
  .value-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .value-card:nth-child(1) { animation-delay: 0.1s; }
  .value-card:nth-child(2) { animation-delay: 0.2s; }
  .value-card:nth-child(3) { animation-delay: 0.3s; }
  .value-card:nth-child(4) { animation-delay: 0.4s; }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Enhanced focus states for accessibility */
  .value-card:focus-within {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
  }
  
  .value-card h3:focus {
    outline: none;
  }
  
  /* High contrast mode support */
  @media (prefers-contrast: high) {
    .value-card {
      border: 2px solid var(--text-dark);
    }
    
    .value-card:hover {
      border-color: var(--primary-accent);
      background: var(--primary-accent-light);
    }
  }
  
  /* Reduced motion support */
  @media (prefers-reduced-motion: reduce) {
    .value-card {
      animation: none;
      opacity: 1;
      transform: none;
      transition: none;
    }
    
    .value-card:hover {
      transform: none;
    }
    
    .value-card:hover .value-icon {
      transform: none;
    }
  }