:root {
    /* Primary Colors */
    --primary-600: #4701ff;
    --primary-500: #4701ff;
    --primary-400: #ec4899;
    --primary-700: #4f46e5;
    --primary-800: #5b5bd6;
  
    /* Background Colors */
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-tertiary: #e2e8f0;
    --bg-white: #fff;
  
    /* Improved Text Colors */
    --text-primary: #1e293b;
    /* Darker for better contrast */
    --text-secondary: #0f172a;
    /* Even darker for headings */
    --text-muted: #475569;
    /* Darker muted text */
    --text-light: #64748b;
    /* For subtle text */
    --text-black: #000;
    --text-black-80: #000000d9;
    --text-hero-main: #0f172a;
    /* Strong contrast for main heading */
    --text-hero-sub: #374151;
    /* Darker subtitle */
  
    /* Status Colors */
    --success: #10b981;
    --success-dark: #047857;
    --warning: #f59e0b;
    --warning-dark: #d97706;
    --error: #dc2626;
    --error-bg: rgba(239, 68, 68, 0.1);
    --info: #06b6d4;
    --info-dark: #0891b2;
    --danger: #ef4444;
    --danger-dark: #dc2626;
  
    /* Specific Feature Colors */
    --openai: #10a37f;
    --openai-dark: #1a7f64;
    --blue: #3b82f6;
    --blue-dark: #1d4ed8;
    --pink: #ec4899;
    --pink-dark: #be185d;
    --purple: #8b5cf6;
    --purple-dark: #7c3aed;
  
    /* Social Colors */
    --facebook: #3b5998;
    --twitter: #1da1f2;
    --linkedin: #0077b5;
    --social-hover: #007bff;
  
    /* Utility Colors */
    --border-light: rgba(148, 163, 184, 0.2);
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --overlay-light: rgba(99, 102, 241, 0.1);
    --overlay-primary: rgba(99, 102, 241, 0.3);
    --overlay-dark: rgba(99, 102, 241, 0.4);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: linear-gradient(
      135deg,
      var(--bg-primary) 0%,
      var(--bg-secondary) 100%
    );
    color: var(--text-primary);
    overflow-x: hidden;
  }
  
  /* Header */
  .header {
    /* padding: 15px 0; */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 3px var(--shadow-light);
  }
  .logo img {
    height: 45px;
    width: auto;
  }
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }
  .nav-links {
    margin: 0;
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
  }
  .nav-links a {
    color: var(--text-black);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
  }
  .nav-links a:hover {
    color: var(--primary-600);
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-600);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after {
    width: 100%;
  }
  .login-btn {
    background: #4701ff;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  .login-btn:hover {
    color: #fff;
    background: #4701ff;
  }
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
  }
  .hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  /* Hero Section */
  .hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(
      135deg,
      var(--bg-primary) 0%,
      var(--bg-secondary) 50%,
      var(--bg-tertiary) 100%
    );
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--overlay-light) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,
    100% {
      opacity: 0.5;
      transform: scale(1);
    }
  
    50% {
      opacity: 0.8;
      transform: scale(1.05);
    }
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
  .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--error-bg);
    color: var(--error);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
  }
  .trust-badge::before {
    content: "❤️";
  }
  .hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background-color: #000;
    /* background: linear-gradient(135deg, var(--text-secondary), var(--text-light), var(--text-muted)); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-highlight {
    background: linear-gradient(
      135deg,
      var(--primary-600),
      var(--primary-500),
      var(--primary-400)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  .cta-button {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--overlay-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .cta-button:hover {
    color: #fff;
    text-decoration: none !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--overlay-dark);
  }
  .cta-button::after {
    content: "🚀";
  }
  
  /* Premium Models */
  .premium-models {
    margin: 48px 0;
  }
  
  .premium-title {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .models-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .model-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: 16px;
  }
  
  .model-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: transparent;
  }
  
  .model-icon img {
    border-radius: 50px;
  }
  
  .premium-models .model-name {
    padding-top: 1rem;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
  }
  
  /* Category Tabs */
  .category-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .category-tab {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 100px;
    position: relative;
  }
  
  .category-tab:hover {
    text-decoration: none;
    color: var(--primary-600);
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-2px);
  }
  
  .category-icon {
    font-size: 22px;
    /* margin-bottom: 8px; */
  }
  
  .category-count {
    background: var(--overlay-light);
    color: var(--primary-600);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
  }
  
  /* Why use model css */
  .model-icon img {
    border-radius: 50px;
  }
  .header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .header h1 {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .header .underline {
    width: 100px;
    height: 4px;
    background: var(--primary-600);
    margin: 0 auto 25px;
    border-radius: 2px;
  }
  
  .header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .pricing-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .pricing-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 380px;
    max-width: 450px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .regular-card {
    border: 3px solid #f87171;
  }
  
  .featured-card {
    border: 3px solid #34d399;
  }
  
  .featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-600);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .featured-badge::before {
    content: "C";
    font-weight: bold;
    background: white;
    color: var(--primary-600);
    width: 20px;
    height: 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }
  
  .model-list {
    flex: 1;
  }
  
  .model-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
  }
  
  .model-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .model-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
  }
  
  .claude-icon {
    color: #f97316;
    font-size: 16px;
  }
  
  .gpt-icon {
    background: #10b981;
    color: white;
    border-radius: 50%;
    font-size: 12px;
  }
  
  .gemini-icon {
    color: #3b82f6;
    font-size: 16px;
  }
  
  .llama-icon {
    color: #1f2937;
    font-size: 18px;
    font-weight: bold;
  }
  
  .perplexity-icon {
    color: #06b6d4;
    font-size: 16px;
  }
  
  .stability-icon {
    color: #8b5cf6;
    font-size: 14px;
  }
  
  .model-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
  }
  
  .model-price {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
    padding-left: 1rem;
  }
  
  .price-section {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .price-bracket {
    font-size: 12rem;
    font-weight: 300;
    line-height: 0.8;
  }
  
  .regular-card .price-bracket {
    color: #dc2626;
    position: relative;
    top: -20px;
  }
  
  .featured-card .price-bracket {
    color: #059669;
    position: relative;
    top: -20px;
  }
  
  .price-badge {
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
  }
  
  .regular-card .price-badge {
    background: #dc2626;
  }
  
  .featured-card .price-badge {
    background: #059669;
  }
  
  /* How It Works Section */
  .how-it-works {
    padding: 100px 0;
    background: linear-gradient(
      135deg,
      var(--bg-primary) 0%,
      var(--bg-secondary) 100%
    );
    position: relative;
  }
  
  .hiw-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }
  
  .how-it-works h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.2;
  }
  h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.2;
  }
  
  .how-it-works p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  .hiw-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 64px 0;
  }
  
  .hiw-step {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 16px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .hiw-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px var(--shadow-medium);
  }
  
  .hiw-step-icon {
    color: var(--bg-white);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px var(--overlay-primary);
  }
  
  .hiw-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 12px;
  }
  
  .hiw-step p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .hiw-cta {
    text-align: center;
    margin-top: 48px;
  }
  
  .hiw-note {
    display: block;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 14px;
  }
  
  /* Advanced AI Features Section */
  .ai-features {
    padding: 100px 0;
    background: var(--bg-white);
  }
  
  .ai-features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 32px;
  }
  
  .ai-features h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-secondary);
  }
  
  .ai-features-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 60px;
  }
  
  .ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .ai-feature {
    text-align: center;
    padding: 20px;
  }
  
  .ai-feature-icon {
    background: var(--primary-500) !important;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }
  
  .ai-feature-icon.openai {
    background: linear-gradient(135deg, var(--openai), var(--openai-dark));
  }
  
  .ai-feature-icon.content {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  }
  
  .ai-feature-icon.wizard {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  }
  
  .ai-feature-icon.languages {
    background: linear-gradient(135deg, var(--warning), var(--warning-dark));
  }
  
  .ai-feature-icon.templates {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  }
  
  .ai-feature-icon.seo {
    background: linear-gradient(135deg, var(--success), var(--success-dark));
  }
  
  .ai-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
  }
  
  .ai-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 100px 0;
    background: var(--bg-white);
  }
  
  .faq-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
  }
  
  .faq-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-secondary);
  }
  
  .faq-section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .faq-list {
    display: grid;
    gap: 12px;
  }
  
  .faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
  }
  
  .faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 1rem;
    outline: none;
    list-style: none;
    padding: 20px;
    position: relative;
  }
  
  .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.2rem;
    color: var(--primary-600);
    transition: transform 0.3s ease;
  }
  
  .faq-item[open] summary::after {
    transform: rotate(45deg);
  }
  
  .faq-item p {
    padding: 0 20px 20px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  .faq-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .faq-illustration {
    width: 250px;
    height: 200px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-600);
  }
  
  /* CTA Strip */
  .cta-strip {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    padding: 80px 0;
    text-align: center;
    color: var(--bg-white);
  }
  
  .cta-strip-inner {
    max-width: 800px;
  }
  
  .cta-strip h3 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
  }
  
  .cta-strip p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
  }
  
  .cta-strip .cta-button {
    background: var(--bg-white);
    color: var(--primary-600);
    border: 2px solid var(--bg-white);
  }
  
  /* Footer */
  .footer {
    background: var(--bg-white);
    color: var(--text-black);
    padding: 60px 0 30px;
    margin-top: 120px;
  }
  
  .footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-black);
  }
  
  .footer-section a {
    font-size: 14px;
    display: block;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: var(--primary-600);
  }
  
  .footer-section p {
    color: var(--text-black-80);
    line-height: 1.6;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-white);
    border-radius: 8px;
  }
  
  .footer-bottom p {
    color: var(--text-black);
    margin: 0;
    font-size: 14px;
  }
  
  /* Animation classes */
  .card-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .card-anim.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .mobile-login {
    display: none;
  }
  
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  .overlay.active {
    display: block;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
  }
  
  /* Overlay for mobile menu */
  .header .overlay.active {
    display: block;
  }
  
  /* dashboard screenshot images */
  .dashboard-preview {
    position: relative;
    top: -100px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  .dashboard-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }
  .dashboard-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  .dashboard-preview img:hover {
    transform: scale(1.02);
  }
  
  /* Responsive Mobile Styles */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .how-it-works h2,
    .ai-features h2,
    .who-can-use h2,
    .faq-section h2,
    .latest-posts h2 {
      font-size: 2rem;
    }
  
    .cta-strip h3 {
      font-size: 1.8rem;
    }

  
    .models-row {
      gap: 12px;
    }
  
    .category-tabs {
      gap: 20px;
    }
  
    .hiw-steps {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .ai-features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 24px;
    }
  
    .users-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 24px;
    }
  
    .faq-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .posts-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
  
  @media (max-width: 768px) {
    .header {
      padding: 0 15px;
    }
  
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 80%;
      max-width: 300px;
      background: white;
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 80px;
      transition: right 0.3s ease;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      gap: 0;
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .nav-links li {
      width: 100%;
      text-align: center;
      padding: 20px 0;
      border-bottom: 1px solid #f0f0f0;
    }
  
    .nav-links li:last-child {
      border-bottom: none;
    }
  
    .nav-links a {
      display: block;
      font-size: 18px;
      padding: 10px 20px;
    }
  
    .hamburger {
      display: flex;
    }
  
    .login-btn {
      display: none;
    }
  
    .mobile-login {
      display: block;
      background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
      color: white;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 500;
      margin: 20px;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .ai-features-grid {
      grid-template-columns: 1fr;
    }
  
    .users-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .pricing-container {
      flex-direction: column;
      align-items: center;
    }
  
    .header h1 {
      font-size: 2.2rem;
    }
  
    .pricing-card {
      min-width: 320px;
      max-width: 100%;
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }
  
    .price-section {
      justify-content: center;
    }
  }