body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

header {
  background: #111;
  color: #fff;
  padding: 10px 0;
}

header .logo {
  margin: 0;
  display: inline-block;
  font-size: 1.5em;
  font-weight: bold;
}

header nav {
  float: right;
}

header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

header nav ul li {
  display: inline;
  margin-left: 20px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
}

.hero {
  background: #f4f4f4;
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  margin-bottom: 20px;
  font-size: 2em;
}

.cta {
  display: inline-block;
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

section {
  padding: 40px 20px;
}

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

.services .service {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.process ol {
  padding-left: 20px;
}

.contact form {
  display: flex;
  flex-direction: column;
}

.contact form input,
.contact form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact form button {
  background: #007BFF;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Header container */
.header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header img {
    height: 40px;
    width: auto;
}
.brand-text {
    font-family: 'Poppins','Lato',sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a2540;
    text-decoration: none;
    cursor: default;
}
@media (max-width:600px){
    .brand-text{font-size:1.4rem;}
    .header img{height:32px;}
}

/* Contact form styling */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form input, .contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}
.contact-form button {
    background-color: #0a2540;
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}
.contact-form button:hover {
    background-color: #163d66;
}


/* Brand text styling */
.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #0a2540;
    text-decoration: none;
    cursor: default;
}
.brand-text:hover {
    color: #0a2540; /* No hover change */
}
