<DOCUMENT filename="styles.css">
/* Reset & global */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; color: #212529; line-height: 1.5; background: #fff; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Header */
.header { position: fixed; top: 0; width: 100%; background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.1); z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo { font-size: 1.8rem; font-weight: 700; color: #007BFF; }
.logo span { color: #212529; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: #212529; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #007BFF; }

/* Hero */
.hero { min-height: 80vh; background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero-content { max-width: 800px; }
.hero h1 { font-family: 'Open Sans', sans-serif; font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; }
.btn-primary { padding: 12px 24px; background: #007BFF; color: #fff; border-radius: 4px; text-decoration: none; font-weight: 500; transition: background 0.3s; }
.btn-primary:hover { background: #0056b3; }

/* Sections */
.section { padding: 80px 0; text-align: center; }
.light-bg { background: #F8F9FA; }
.section h2 { font-family: 'Open Sans', sans-serif; font-size: 2.5rem; color: #007BFF; margin-bottom: 20px; }
.section p { font-size: 1.1rem; max-width: 800px; margin: 0 auto 40px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { background: #fff; border: 1px solid #E9ECEF; border-radius: 8px; padding: 30px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); text-align: center; }
.card-icon { font-size: 3rem; color: #007BFF; margin-bottom: 20px; }
.card h3 { font-family: 'Open Sans', sans-serif; font-size: 1.4rem; color: #212529; margin-bottom: 15px; }
.card p { color: #6C757D; }

/* Partners */
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 30px; }
.logos img { max-height: 60px; opacity: 0.8; transition: opacity 0.3s; }
.logos img:hover { opacity: 1; }

/* Contact */
.contact-block { max-width: 600px; margin: 0 auto; }

/* Footer */
.footer { background: #F8F9FA; color: #6C757D; text-align: center; padding: 40px 0; font-size: 0.9rem; }
.footer-content p { margin: 8px 0; }

/* Responsive */
@media (max-width: 768px) {
  .navbar { flex-direction: column; align-items: flex-start; }
  .nav-links { flex-direction: column; gap: 10px; margin-top: 10px; }
  .hero h1 { font-size: 2rem; }
  .cards { grid-template-columns: 1fr; }
}
</DOCUMENT>