/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f8f9fa;
  color: #1c1c1c;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #0077cc, #003366);
  color: white;
}
.logo img {
  max-width: 300px; /* default for mobile/tablet */
  width: 100%;
  height: auto;
}

/* Larger on desktop */
@media (min-width: 1024px) {
  .logo img {
    max-width: 600px; /* or 600px if you want it even bigger */
  }
}
.tagline {
  font-style: italic;
  color: #e6f0ff;
  margin-top: 10px;
}

/* Main sections */
main {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}
main section {
  margin: 40px 0;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
h2 {
  color: #003366;
  margin-bottom: 15px;
  font-size: 1.8rem;
  text-align: center;
}
.about p,
.contact p,
.services ul {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

/* Services */
.services ul {
  list-style: none;
  padding: 0;
}
.services li {
  padding: 10px;
  border-bottom: 1px solid #e6e6e6;
}
.services li:last-child {
  border-bottom: none;
}

/* Contact links */
a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
}
a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #003366, #0077cc);
  color: white;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* Responsive design */
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
  .logo img {
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  header {
    padding: 20px;
  }
  h2 {
    font-size: 1.3rem;
  }
  main {
    padding: 20px 10px;
  }
}
