* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
  background: #f7f9fc;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header {
  background: #0a2a43;
  color: #fff;
  padding: 15px 0;
}

.logo {
  font-size: 20px;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(10,42,67,0.8), rgba(10,42,67,0.8)),
              url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.hero p {
  max-width: 600px;
  margin: auto;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  background: #ffb703;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* SERVICES */
.services {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ABOUT */
.about {
  background: #e8f0fe;
  padding: 60px 0;
}

.about-content {
  text-align: center;
  max-width: 700px;
}

/* PROCESS */
.process {
  padding: 60px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.step {
  background: white;
  padding: 20px;
  border-left: 5px solid #0a2a43;
}

/* CONTACT */
.contact {
  background: #0a2a43;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.contact-box p {
  margin-top: 10px;
}

.contact-info {
  margin-top: 20px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #061826;
  color: white;
}