body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #1f2937;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  color: #fff;
  padding: 16px 60px;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  height: 100vh;
  background: url("images/hero-ifc.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.hero-box {
  background: rgba(255,255,255,0.92);
  max-width: 620px;
  padding: 40px;
  border-radius: 6px;
}

.section {
  padding: 90px 60px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  color: #1e3a8a;
  margin-bottom: 20px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}

.card {
  background: #f8fafc;
  padding: 28px;
  border-left: 4px solid #1e3a8a;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 6px;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
}

form button {
  padding: 12px 24px;
  background: #1e3a8a;
  color: #fff;
  border: none;
  cursor: pointer;
}

footer {
  background: #020617;
  color: #fff;
  padding: 40px 60px;
}
``