a:link {
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
}

a:visited {
    text-decoration: inherit;
    color: inherit;
    cursor: auto;
}

body {
    margin: 0;
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(135deg, #e3fdf5, #ffe6fa);
    color: #2b2b2b;
  }
  header {
    text-align: center;
    padding: 3rem 1rem 2rem;
  }
  .logo {
    max-width: 120px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
  }
  
  .logo:hover {
    transform: scale(1.05) rotate(2deg);
  }
  h1 {
    font-size: 2.5rem;
    margin: 0;
  }
  .tagline {
    font-size: 1.2rem;
    color: #444;
    margin: 0.5rem 0 2rem;
  }
  .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
  }
  .btn:hover {
    opacity: 0.8;
  }
  .primary, .primary:hover {
    background-color: #44aa77;
    color: white !important;
  }
  .secondary, .secondary:hover {
    background-color: white;
    border: 2px solid #44aa77;
    color: #44aa77;
  }
  section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
  }
  h2 {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .how-it-works {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .how-it-works .step {
    flex: 1;
  }
  @media(min-width: 700px) {
    .how-it-works {
      flex-direction: row;
    }
  }
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
  }
  .comparison-table th, .comparison-table td {
    border: 1px solid #ccc;
    padding: 0.75rem;
    text-align: center;
  }
  .screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
  }
  .screenshots img {
    width: 180px;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  footer {
    text-align: center;
    font-size: 0.9rem;
    padding: 2rem 1rem;
    background: #f5f5f5;
    color: #777;
  }
  
  /* Enhanced Section Styles */
  .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  
  /* Get Started Section */
  .get-started-section {
    background: linear-gradient(135deg, #f8fdff, #f0f9ff);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    margin: 2rem auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  
  .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .step-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-top: 15px;
  }
  
  .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  .step-number {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #44aa77;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  
  .step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .step-card h3 {
    color: #2b2b2b;
    margin-bottom: 1rem;
  }
  
  .code-snippet {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin: 1rem 0;
    font-family: 'Monaco', 'Consolas', monospace;
  }
  
  .code-snippet code {
    color: #d63384;
    font-size: 0.9rem;
  }
  
  .highlight-link {
    color: #44aa77;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
  }
  
  .highlight-link:hover {
    border-bottom-color: #44aa77;
  }
  
  .feature-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  
  .tag {
    background: linear-gradient(135deg, #44aa77, #5cb85c);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  /* Get Involved Section */
  .get-involved-section {
    background: linear-gradient(135deg, #fff8f0, #fef7ed);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    margin: 2rem auto;
  }
  
  .involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .involvement-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  
  .involvement-card:hover {
    transform: translateY(-3px);
  }
  
  .involvement-card.developer {
    border-top: 4px solid #007acc;
  }
  
  .involvement-card.community {
    border-top: 4px solid #ff6b6b;
  }
  
  .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .involvement-actions {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
  }
  
  .action-btn {
    padding: 0.7rem 1.2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-width: 140px;
  }
  
  .action-btn.primary {
    background: #44aa77;
    color: white;
  }
  
  .action-btn.primary:hover {
    background: #3d9968;
    transform: translateY(-2px);
  }
  
  .action-btn.secondary {
    background: transparent;
    color: #44aa77;
    border: 2px solid #44aa77;
  }
  
  .action-btn.secondary:hover {
    background: #44aa77;
    color: white;
  }
  
  .tech-stack {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .tech-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.7rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .community-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #44aa77;
  }
  
  .stat-label {
    font-size: 0.9rem;
    color: #666;
  }
  
  /* Built With Section */
  .built-with-section {
    background: linear-gradient(135deg, #f0fff4, #f7fffa);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    margin: 2rem auto;
  }
  
  .projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .project-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }
  
  .project-card.featured {
    border: 2px solid #44aa77;
    position: relative;
  }
  
  .project-card.featured::before {
    content: '⭐ Featured';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #44aa77;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .project-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .project-icon {
    font-size: 2.5rem;
  }
  
  .project-meta h3 {
    margin: 0 0 0.3rem 0;
    color: #2b2b2b;
  }
  
  .project-type {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
  }
  
  .project-status {
    margin-left: auto;
  }
  
  .status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .status-badge.active {
    background: #d4edda;
    color: #155724;
  }
  
  .status-badge.beta {
    background: #fff3cd;
    color: #856404;
  }
  
  .project-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .project-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  
  .feature-chip {
    background: #f8f9fa;
    color: #495057;
    padding: 0.3rem 0.7rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    border: 1px solid #dee2e6;
  }
  
  .project-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .project-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .project-btn.primary {
    background: #44aa77;
    color: white;
  }
  
  .project-btn.primary:hover {
    background: #3d9968;
    transform: translateY(-2px);
  }
  
  .project-btn.secondary {
    background: transparent;
    color: #44aa77;
    border: 2px solid #44aa77;
  }
  
  .project-btn.secondary:hover {
    background: #44aa77;
    color: white;
  }
  
  .project-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  
  .showcase-footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(68, 170, 119, 0.1);
    border-radius: 1rem;
  }
  
  .showcase-cta {
    font-size: 1.1rem;
    margin: 0;
  }
  
  .inline-link {
    color: #44aa77;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
  }
  
  .inline-link:hover {
    border-bottom-color: #44aa77;
  }
  
  /* How It Works Section */
  .how-it-works-section {
    background: linear-gradient(135deg, #fef3e2, #fff8f0);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    margin: 2rem auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  
  .workflow-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .workflow-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  .workflow-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  }
  
  .workflow-icon {
    flex-shrink: 0;
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .icon-circle.install {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
  }
  
  .icon-circle.connect {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
  }
  
  .icon-circle.brew {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
  }
  
  .icon-emoji {
    font-size: 2rem;
  }
  
  .workflow-content {
    flex: 1;
  }
  
  .workflow-content h3 {
    margin: 0 0 0.5rem 0;
    color: #2b2b2b;
    font-size: 1.4rem;
  }
  
  .workflow-content p {
    margin: 0 0 1rem 0;
    color: #555;
    line-height: 1.6;
  }
  
  .workflow-details {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .detail-tag {
    background: #f8f9fa;
    color: #495057;
    padding: 0.3rem 0.7rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    border: 1px solid #dee2e6;
  }
  
  .workflow-arrow {
    font-size: 2rem;
    color: #44aa77;
    font-weight: bold;
    margin-left: auto;
  }
  
  /* Why Freemial Section */
  .why-freemial-section {
    background: linear-gradient(135deg, #e8f5e8, #f0fff0);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    margin: 2rem auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  
  .comparison-container {
    margin-top: 1.5rem;
  }
  
  .comparison-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .comparison-title h3 {
    color: #2b2b2b;
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
  }
  
  .comparison-title p {
    color: #666;
    margin: 0;
  }
  
  .comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .comparison-feature {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .comparison-feature:hover {
    transform: translateY(-3px);
  }
  
  .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .comparison-feature h4 {
    color: #2b2b2b;
    margin: 0 0 1.5rem 0;
    font-size: 1.2rem;
  }
  
  .feature-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .option.cloud {
    background: #fff5f5;
    border: 1px solid #fed7d7;
  }
  
  .option.freemial {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
  }
  
  .option-label {
    font-weight: 600;
    color: #2b2b2b;
  }
  
  .option-status {
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .option-status.yes {
    color: #38a169;
  }
  
  .option-status.no {
    color: #e53e3e;
  }
  
  .option-status.neutral {
    color: #d69e2e;
  }
  
  .testimonial {
    margin-top: 2rem;
    text-align: center;
  }
  
  .testimonial-content {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
  }
  
  .quote-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #2b2b2b;
    margin: 0 0 1rem 0;
    line-height: 1.6;
  }
  
  .testimonial-author {
    color: #666;
    font-weight: 600;
  }
  
  /* Logo Enhancements */
  .testimonial-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .testimonial-logo {
    width: 40px;
    height: auto;
    padding: 8px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
  }
  
  .testimonial-logo:hover {
    transform: scale(1.1) rotate(-5deg);
  }
  
  .footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }
  
  .footer-logo {
    width: 24px;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .footer-logo:hover {
    transform: scale(1.2) rotate(10deg);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .steps-container,
    .involvement-grid,
    .projects-showcase,
    .comparison-grid {
      grid-template-columns: 1fr;
    }
    
    .involvement-actions,
    .project-actions {
      flex-direction: column;
    }
    
    .action-btn,
    .project-btn {
      width: 100%;
      min-width: unset;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
    .community-stats {
      gap: 1rem;
    }
    
    .project-header {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }
    
    .project-meta {
      text-align: center;
      width: 100%;
    }
    
    .project-meta h3,
    .project-type {
      text-align: center;
    }
    
    .project-status {
      margin-left: 0;
    }
    
    .workflow-step {
      flex-direction: column;
      text-align: center;
    }
    
    .workflow-arrow {
      transform: rotate(90deg);
      margin: 1rem 0;
    }
    
    .option {
      flex-direction: column;
      gap: 0.5rem;
      text-align: center;
    }
    
    /* Fix button overflow on small screens */
    .step-card,
    .involvement-card,
    .comparison-feature {
      overflow: hidden;
    }
    
    .project-card {
      overflow: visible;
    }
    
    .project-card .project-actions {
      overflow: hidden;
    }
    
    .involvement-actions {
      gap: 0.8rem;
    }
    
    .project-actions {
      gap: 0.8rem;
    }
    
    /* Ensure buttons don't exceed card width */
    .action-btn {
      font-size: 0.85rem;
      padding: 0.6rem 1rem;
      text-align: center;
      box-sizing: border-box;
    }
    
    .project-btn {
      font-size: 0.85rem;
      padding: 0.6rem 1.2rem;
      text-align: center;
      box-sizing: border-box;
    }
  }