/* Reset / Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #F5F8FB;
  color: #2c3e50;
}

/* Header */
.site-header {
  background: #F5F8FB;
  border-bottom: 3px solid #1e88a8;
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* Logo */
.logo {
  height: 185px;
  width: auto;
}

/* Company Name */
.site-title {
  margin: 0;
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #1e3a5f;
}

/* Header Alignment */
.header-left {
  justify-self: start;
}

.header-center {
  justify-self: center;
}

.header-right {
  justify-self: end;
}

/* Navigation */
nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #1e3a5f;
  font-weight: 600;
}

nav a:hover {
  color: #2f8f46;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e88a8, #2f8f46);
  color: #F5F8FB;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  margin-bottom: 10px;
  font-size: 38px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}

/* Page Content */
.page {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
}

/* Features / Cards */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}

.feature-card,
.service-box {
  background: #F5F8FB;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* Lists */
ul {
  padding-left: 20px;
}

li {
  line-height: 1.8;
}

/* Forms */
.contact-form {
  max-width: 500px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background: #1e88a8;
  color: #ffffff;
  padding: 12px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #2f8f46;
}

/* Footer */
footer {
  background: #1e3a5f;
  color: #F5F8FB;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .header-left,
  .header-right {
    justify-self: center;
  }

  nav a {
    margin: 0 10px;
  }

  .hero h1 {
    font-size: 30px;
  }
}
