        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: #f9fafc;
            color: #1e2a3a;
            line-height: 1.6;
            padding-top: 140px; /* fixed header space */
            scroll-behavior: smooth;
        }

        /* ===== CENTERED PAGE WRAPPER ===== */
        .page-wrapper {
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }


        /* ----- header (mirror home) ----- */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 4px 16px rgba(0,20,40,0.08);
            z-index: 1000;
        }
        .logo-row {
            padding: 0.6rem 2rem;
            border-bottom: 1px solid rgba(13,71,161,0.1);
            background: white;
        }
        .company-logo {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 2rem;
        }
        .logo-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
        .company-logo img {
            height: 56px;
            width: auto;
            display: block;
            border-radius: 12px;
        }
        .slogan-text {
            font-size: 1.25rem;
            font-weight: 600;
            color: #0d47a1;
            background: #e3f2fd;
            padding: 0.4rem 1.4rem;
            border-radius: 40px;
            white-space: nowrap;
            border: 1px solid rgba(13,71,161,0.2);
        }

        .pro-badge {
            background: linear-gradient(135deg, #ffd700, #ffb347);
            color: #1a237e;
            padding: 0.25rem 1rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 0.8rem;
            margin-left: 10px;
            white-space: nowrap;
            display: inline-block;
        }

        .header-cta { display: flex; gap: 12px; }
        .header-cta a {
            background: #0d47a1;
            color: white;
            text-decoration: none;
            padding: 0.4rem 1.4rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        .header-cta a:hover { background: #1565c0; }

       .header-cta a.signup {
            background: #4CAF50;
        }

        .header-cta a.signup:hover {
            background: #3d8b40;
        }
        .nav-row {
            background: #0d47a1;
            color: white;
            width: 100%;
        }
        .main-nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 0.1rem 2rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.2rem;
        }
        .nav-links li a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 0.4rem 1.2rem;
            font-weight: 500;
            border-radius: 30px;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .nav-links li a:hover { background: #4CAF50; }

       .nav-links li a.active {
        	border-bottom: 5px solid #4CAF50;
        	background: transparent;
        	border-radius: 0;
    	   }

        /* ----- FAQ hero ----- */
        .faq-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 24px;
            padding: 2rem 2.5rem;
            margin: 0 0 2.5rem 0;
            color: white;
            box-shadow: 0 8px 20px rgba(102,126,234,0.25);
        }
        .faq-hero h1 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .faq-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
        }

        /* ----- FAQ accordion ----- */
        .faq-section {
            background: white;
            border-radius: 32px;
            padding: 2.5rem 2.5rem;
            margin: 20px auto 30px auto;
            box-shadow: 0 8px 20px rgba(0,20,50,0.06);
            margin-bottom: 3rem;
            border: 1px solid rgba(13,71,161,0.06);
        }
        .faq-item {
            border-bottom: 1px solid #eef2f6;
            padding: 1.2rem 0;
        }
        .faq-item:last-child { border-bottom: 0; }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.2rem;
            color: #0d47a1;
            transition: color 0.2s;
            gap: 1rem;
        }
        .faq-question:hover { color: #1565c0; }
        .faq-question i {
            font-size: 1.3rem;
            transition: transform 0.25s ease;
            color: #4f6f8f;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.3s ease;
            padding: 0 0.5rem;
            color: #2c3e50;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .faq-answer a {
            color: #0d47a1;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px dotted rgba(13,71,161,0.3);
        }
        .faq-answer a:hover { border-bottom: 1px solid #0d47a1; }
        .faq-item.open .faq-answer {
            max-height: 1500px;
            padding: 1rem 0.5rem 0.2rem 0.5rem;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        /* Pro highlight box */
        .pro-highlight {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            border-left: 4px solid #4CAF50;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin: 1rem 0;
        }
        .pro-highlight strong {
            color: #1b5e20;
        }

        /* Feature badge */
        .feature-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ffd700, #ffb347);
            color: #1a237e;
            padding: 0.15rem 0.8rem;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-left: 8px;
        }

        /* quick links */
        .quick-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            background: #f4f8fd;
            padding: 1.5rem 2rem;
            border-radius: 60px;
            margin-bottom: 2.5rem;
            justify-content: center;
        }
        .quick-links a {
            color: #0d47a1;
            font-weight: 500;
            text-decoration: none;
            font-size: 1rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .quick-links a:hover { border-bottom-color: #0d47a1; }

        /* footer */
        footer {
            background: white;
            padding: 32px 24px;
            text-align: center;
            border-top: 1px solid #eef2f6;
            border-radius: 40px 40px 0 0;
            margin-top: 2rem;
        }

        /* mobile */
        @media (max-width: 768px) {

            body { 
                padding-top: 0;
            }
            
            .site-header {
                position: relative;
                top: auto;
                left: auto;
                width: 100%;
                box-shadow: 0 2px 8px rgba(0, 20, 40, 0.05);
            }
            
            .logo-row { 
                padding: 0.5rem 1rem; 
            }
            
            .main-nav { 
                padding: 0.2rem 1rem; 
            }
            
            .company-logo {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                gap: 0.5rem;
            }
            
            .logo-group { 
                flex: 0 0 auto;
                display: flex;
                align-items: center;
                gap: 10px;
            }
            
            .company-logo img { 
                height: 42px;
            }
            
            .slogan-text { 
                display: none; 
            }
            
            .header-cta {
                display: flex;
                flex-direction: column;
                gap: 6px;
                margin-left: auto;
                flex: 0 0 auto;
            }
            
            .header-cta a {
                padding: 0.25rem 1rem;
                font-size: 1rem;
                text-align: center;
                min-width: 70px;
                display: block;
            }
            
  		   .nav-row {
        		  position: relative;
               overflow-x: auto;
              -webkit-overflow-scrolling: touch;
           }
            
    		  .main-nav {
        		  display: flex;
        		  align-items: center;
        		  justify-content: flex-start;
        		  flex-wrap: nowrap;
        		  gap: 8px;
       		  padding: 0.2rem 1rem;
        		  overflow-x: auto;
        		  -webkit-overflow-scrolling: touch;
        		 scrollbar-width: thin;
    		  }

   .main-nav::-webkit-scrollbar {
        height: 3px;
    }
    
    .main-nav::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.15);
        border-radius: 10px;
    }
    
    .main-nav::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.4);
        border-radius: 10px;
    }

    .nav-links {
        display: flex;
        overflow-x: visible;
        white-space: nowrap;
        flex-wrap: nowrap;
        gap: 0.25rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }
            

            
            .nav-links li a {
                padding: 0.4rem 0.85rem;
                font-size: 1rem;
                white-space: nowrap;
            }
            
            .pro-badge-nav {
                display: inline-block;
                background: linear-gradient(135deg, #ffd700, #ffb347);
                color: #1a237e;
                padding: 0.25rem 0.8rem;
                border-radius: 50px;
                font-weight: bold;
                font-size: 0.7rem;
                white-space: nowrap;
                margin-left: auto;
            }
            
            .logo-group .pro-badge {
                display: none;
            }

  		   .nav-links li a.active {
        		  border-bottom: 2px solid #4CAF50;
        		  background: transparent;
        		  border-radius: 0;
    		  }


    		   .faq-hero { 
        			margin-top: 10px; 
    			}
            .faq-hero h1 { font-size: 1.3rem; }
		   	 .faq-hero p { font-size: 1.1rem; }
            .faq-section { padding: 1.5rem; }
            .faq-question { font-size: 1.05rem; }
            .quick-links { border-radius: 30px; padding: 1rem; }

   		   	 .nav-links li a.active {
        		  	border-bottom: 2px solid #4CAF50;
        		  	background: transparent;
        		  	border-radius: 0;
    		 	}

  			/* ==================================================================
       		SAFARI-ONLY OVERRIDES (Android Chrome ignores this entirely)
       		================================================================== */
    			@supports (-webkit-hyphens:none) {
				html {
        				font-size: 22px !important; /* Slightly scales up layout elements on dense screens, rendering 					identically to Android font-boosting */
    				}
    
    				body {
        				font-size: 22px !important;
    				}

        			/* Scale up the image height slightly on Safari to match the visual look */
        			.company-logo img { 
            			height: 52px !important; 
        			}

       			 /* Scale up the CTA button text and tap padding targets for iOS Safari */
       			 .header-cta a {
            			font-size: 0.95rem !important;      /* Bumps font from 0.8rem up */
            			padding: 0.4rem 1.1rem !important;  /* Bumps padding from 0.25rem up */
        			}

   				/* Fix for Safari FAQ display issues */
    				.faq-item.open .faq-answer {
        				max-height: 4000px !important;
        				display: block !important;
        				padding: 1rem 0.5rem 0.2rem 0.5rem !important;
    				}
    
    				/* Ensure pro-highlight is visible */
    				.pro-highlight {
        				-webkit-transform: translateZ(0);
        				transform: translateZ(0);
        				-webkit-backface-visibility: visible !important;
        				backface-visibility: visible !important;
        				display: block !important;
    				}
    
    				/* Force proper rendering */
    				.faq-answer {
        				-webkit-transition: max-height 0.5s ease-in-out, padding 0.3s ease;
        				transition: max-height 0.5s ease-in-out, padding 0.3s ease;
        				-webkit-overflow-scrolling: touch;
    				}
    
    				.faq-question {
        				cursor: pointer;
        				-webkit-touch-callout: none;
        				-webkit-tap-highlight-color: transparent;
    				}
    
    				/* Force GPU rendering for FAQ items */
    				.faq-item {
        				-webkit-transform: translateZ(0);
        				transform: translateZ(0);
    				}

 				.faq-hero { 
                		width: 100% !important;           /* Changed from 100% to 90% */
                		max-width: 100% !important;       /* Changed from 100% to 90% */
                		padding-left: 16px !important;  
                		padding-right: 16px !important;
               		 margin-left: auto !important;    /* Changed from 0 to auto for centering */
                		margin-right: auto !important;   /* Changed from 0 to auto for centering */
                		border-radius: 16px !important;  /* Restored rounded corners since it no longer touches screen 					edges */
				}
		 	}

        }

        @media (min-width: 769px) and (max-width: 992px) {
            .faq-hero h1 { font-size: 2rem; }
        }
        /* Safari text size adjustment */
        @supports (-webkit-hyphens:none) {
            body { font-size: 18px !important; }
        }

