/* Externalized styles from index.html */
/* Basic Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; color: #333; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

header {
  background: #0a1f44;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}
header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
header p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
header a.cta {
  display: inline-block;
  background: #ff7a00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
}

nav {
  background: #fff;
  padding: 1rem;
}
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}
nav ul li {
  margin: 0 1rem;
}
nav ul li a {
  color: #0a1f44;
  font-weight: bold;
}

section {
  padding: 4rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #0a1f44;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.service-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.service-card h3 {
  margin-bottom: 1rem;
  color: #0a1f44;
}

.methodology-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.step {
  flex: 1 1 150px;
  padding: 1rem;
  background: #f7f7f7;
  border-radius: 8px;
  text-align: center;
}

.clients-quotes {
  max-width: 800px;
  margin: 0 auto;
}
.quote {
  margin-bottom: 2rem;
  border-left: 4px solid #ff7a00;
  padding-left: 1rem;
  font-style: italic;
}

footer {
  background: #0a1f44;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
}
footer a {
  color: #ff7a00;
}
