/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

a {
  color: #0077b6;
  text-decoration: none;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #004f7c;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

nav li a {
  padding: 0.5rem 0;
  display: block;
}

#menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 900px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: #0077b6;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #005b8e;
}

/* Features Section */
.features {
  padding: 4rem 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature h3 {
  margin-bottom: 0.5rem;
  color: #004f7c;
}

.feature p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* CTA Section */
.cta {
  background: #f5f8fa;
  padding: 3rem 0;
  text-align: center;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background: #013a63;
  color: #fff;
  padding: 2rem 0;
}

footer a {
  color: #80c1ff;
  text-decoration: none;
}

footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.footer-col h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.3rem;
}

footer p {
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Page Specific Styles */
.page-title {
  background: #f5f8fa;
  padding: 2rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.page-title h1 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.section {
  padding: 3rem 0;
}

.section h2 {
  margin-bottom: 1rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  background: #f9fbfc;
  border: 1px solid #e0e8ef;
  border-radius: 8px;
  padding: 1.5rem;
}

.service-item h3 {
  margin-bottom: 0.5rem;
  color: #013a63;
}

.service-item p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-company {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1rem;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.team-member h3 {
  margin-bottom: 0.25rem;
  color: #013a63;
}

.team-member p {
  font-size: 0.9rem;
}

.blog-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-post {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.blog-post:last-child {
  border-bottom: none;
}

.blog-post h3 {
  margin-bottom: 0.5rem;
  color: #013a63;
}

.blog-post p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.blog-post a {
  color: #0077b6;
  font-weight: bold;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: #f9fbfc;
  border: 1px solid #e0e8ef;
  border-radius: 8px;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background: #0077b6;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #005b8e;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
    border-bottom: 1px solid #eee;
  }

  nav ul.show {
    display: block;
  }

  #menu-toggle {
    display: block;
  }

  header .container {
    flex-direction: row;
  }
}