@font-face {
  font-family: 'Nourd';
  src: url('../fonts/Nourd.woff2') format('woff2'),
       url('../fonts/Nourd.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Nourd', sans-serif; color: #383838; line-height: 1.6; }
a { text-decoration: none; color: inherit; }

.hero {
  height: 100vh; display: flex; align-items: center; justify-content: center;
  background: #0d47a1;
  text-align: center; color: #fff;
}
.hero .logo {
  max-width: 250px; margin-bottom: 1rem;
}
.hero-content h1 {
  font-size: 2rem; margin-bottom: 0.5rem;
  color: #ffffff;
}
.hero-content p {
  font-size: 1rem; margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.button { padding: 12px 30px; background: #ffffff; color: #0d47a1; border-radius: 4px; font-weight: 600; transition: background 0.3s; }
.button:hover { background: #f0f0f0; }

.services { padding: 60px 20px; max-width: 1200px; margin: 0 auto; text-align: center; }
.services h2 { font-size: 2rem; margin-bottom: 2rem; color: #0d47a1; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card { background: #fff; border-radius: 8px; padding: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }
.card img { width: 60px; margin-bottom: 15px; }
.card h3 { margin-bottom: 0.5rem; color: #0d47a1; }
.card p { color: #383838; }

.contact { padding: 60px 20px; background: #f9f9f9; text-align: center; }
.contact h2 { font-size: 2rem; margin-bottom: 1rem; color: #0d47a1; }
.contact p a { color: #0d47a1; font-weight: 600; }

.footer { padding: 20px; text-align: center; background: #fff; color: #383838; }
