/* Base styles */body{margin:0;padding:0;font-family:Inter,Arial,sans-serif;font-size:18px;line-height:1.6;background:#fff;color:#212529;}a{color:#007BFF;text-decoration:none;}a:hover{text-decoration:underline;}header{background:#fff;border-bottom:1px solid #eaeaea;padding:1rem 0;position:sticky;top:0;z-index:1000;}header .container{display:flex;justify-content:space-between;align-items:center;width:90%;max-width:1200px;margin:auto;}header h1{font-size:1.5rem;margin:0;color:#007BFF;}nav a{margin-left:1rem;font-weight:600;}main{width:90%;max-width:1200px;margin:auto;padding:2rem 0;}footer{background:#f8f9fa;color:#6c757d;padding:1rem 0;margin-top:2rem;font-size:0.9rem;text-align:center;}/* Home page */.search-bar{margin-bottom:1.5rem;}#search{width:100%;max-width:500px;padding:0.75rem;font-size:1rem;border:1px solid #ced4da;border-radius:4px;} .guides-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:1.5rem;} .guide-card{border:1px solid #eaeaea;border-radius:8px;padding:1rem;display:flex;flex-direction:column;align-items:center;text-align:center;transition:box-shadow 0.2s;} .guide-card img{width:60px;height:60px;margin-bottom:0.5rem;} .guide-card h2{font-size:1.1rem;margin:0.5rem 0;flex-grow:1;color:#212529;} .guide-card:hover{box-shadow:0 4px 10px rgba(0,0,0,0.05);}/* Guide page */.quick-facts{background:#f8f9fa;border-left:4px solid #007BFF;padding:1rem;margin-bottom:1.5rem;} .quick-facts ul{list-style:none;padding:0;margin:0;} .quick-facts li{margin-bottom:0.5rem;} ol.steps{padding-left:1.2rem;margin-bottom:1.5rem;} ol.steps li{margin-bottom:0.75rem;} .faq-section{margin-top:2rem;} .faq-section details{margin-bottom:1rem;border:1px solid #eaeaea;border-radius:4px;padding:0.5rem;} .faq-section summary{font-weight:600;cursor:pointer;} .button-link{display:inline-block;background:#007BFF;color:#fff;padding:0.6rem 1rem;border-radius:4px;font-weight:600;transition:background 0.2s;} .button-link:hover{background:#0056b3;} @media(max-width:600px){header .container{flex-direction:column;align-items:flex-start;}nav a{margin:0.5rem 0 0 0;}#search{max-width:100%;}}