* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f7f9fc;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #1a1a40;
  color: white;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  font-size: 1.8em;
}

nav a {
  color: white;
  margin-left: 1em;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #ff6600;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #2c3e50, #34495e);
  color: white;
  text-align: center;
  padding: 5em 2em;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto;
}

a {
  color: #1a1a40;
  text-decoration: underline;
}

a:hover {
  color: #ff6600;
}

/* Buttons */
.btn {
  border-radius: 6px;
  font-size: 1em;
  letter-spacing: 0.3px;
  display: inline-block;
  margin-top: 1.5em;
  padding: 0.8em 1.5em;
  background-color: #ff6600;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.btn:hover {
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
  background-color: #e65c00;
}

.btn-outline {
  border-radius: 6px;
  font-size: 1em;
  letter-spacing: 0.3px;
  display: inline-block;
  margin-top: 1em;
  padding: 0.8em 1.5em;
  border: 2px solid #ff6600;
  color: #ff6600;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
  background-color: #ff6600;
  color: white;
}

/* Sections */
section {
  padding: 4em 2em;
  max-width: 1100px;
  margin: auto;
}

h2, h3 {
  font-size: 2em;
  margin-bottom: 1em;
  color: #1a1a40;
}

h3 {
  font-size: 1.4em;
}

ul {
  margin: 1em 0;
  padding-left: 1.5em;
}

li {
  margin-bottom: 0.5em;
}

/* Cards for services */
.service-cards {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}

.card {
  background-color: white;
  padding: 1.5em;
  flex: 1;
  min-width: 280px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.card h3 {
  margin-bottom: 0.5em;
  color: #1a1a40;
}

/* Blockquotes for case studies */
blockquote {
  font-style: italic;
  padding-left: 1em;
  border-left: 4px solid #ff6600;
  margin: 1.5em 0;
}

blockquote span {
  display: block;
  margin-top: 0.5em;
  font-weight: bold;
  color: #333;
}

/* Form styles */
form {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

input, textarea {
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  background-color: #1a1a40;
  color: white;
  text-align: center;
  padding: 2em;
  font-size: 0.9em;
}