 /* Reset & base */
 * { box-sizing: border-box; margin: 0; padding: 0; }
 body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; line-height: 1.6; background: #fdfdfd; scroll-behavior: smooth; }
 a { text-decoration: none; }
 .container { max-width: 1200px; margin: auto; padding: 0 20px; }

 /* Buttons */
 .btn { display: inline-block; padding: 14px 28px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.3s; border: none; text-align: center; }
 .btn-primary { background: #0078d4; color: #fff; }
 .btn-primary:hover { background: #005a9e; transform: translateY(-2px); }
 .btn-secondary { background: #f0f0f0; color: #333; }
 .btn-secondary:hover { background: #ddd; transform: translateY(-2px); }

 /* Hero */
 .hero { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 80px 20px; background: #eaf4ff; }
 .hero-content { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; width: 100%; }
 .hero-text { flex: 1 1 450px; padding-right: 20px; }
 .hero-text h1 { font-size: 2.8rem; margin-bottom: 20px; color: #222; }
 .hero-text p { font-size: 1.2rem; margin-bottom: 25px; color: #555; }
 .hero-buttons { display: flex; gap: 15px; margin-bottom: 10px; }
 .hero-image { flex: 1 1 400px; text-align: center; }
 .hero-image img { max-width: 100%; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

 /* Info sections */
 .info-section { padding: 60px 0; border-bottom: 1px solid #eee; }
 .info-section h2 { font-size: 2rem; margin-bottom: 20px; text-align: center; }
 .info-section ul { list-style: disc inside; max-width: 600px; margin: auto; }

 /* Cards */
 .cards-section { padding: 60px 0; }
 .three-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 30px; }
 .card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); text-align: center; transition: 0.3s; }
 .card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
 .card h3 { margin-bottom: 15px; color: #0078d4; }

 /* Forms */
 .forms-section { padding: 60px 0; }
 .two-forms { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
 form { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); max-width: 420px; transition: 0.3s; }
 form:hover { transform: translateY(-2px); }
 form label { display: block; margin-bottom: 10px; font-weight: 500; color: #444; }
 form input, form select { width: 100%; padding: 14px; margin-bottom: 15px; border-radius: 8px; border: 1px solid #ccc; transition: 0.2s; }
 form input:focus, form select:focus { border-color: #0078d4; outline: none; }
 .form-success { display: none; text-align: center; color: #0078d4; margin-top: 15px; font-weight: bold; }

 /* Footer */
 footer { text-align: center; padding: 40px 20px; background: #f5f5f5; color: #555; font-size: 14px; }
 .small-text { font-size: 13px; color: #777; display: block; text-align: center; margin-top: 5px; }

 /* Animations */
 section, .hero { opacity: 0; transform: translateY(20px); transition: 1s ease; }
 section.visible, .hero.visible { opacity: 1; transform: translateY(0); }

 /* Responsive */
 @media(max-width: 768px) {
   .hero-content { flex-direction: column; }
   .hero-text { padding-right: 0; text-align: center; margin-bottom: 30px; }
   .hero-text h1 { font-size: 2rem; }
   .three-columns { grid-template-columns: 1fr; }
   .two-forms { flex-direction: column; }
 }
