@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #003366;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* HEADER */
header {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 1.5em 1em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0;
  font-size: 1.8em;
}

nav {
  margin-top: 1em;
}

nav a {
  color: white;
  margin: 0 1em;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #66ccff;
}

/* MAIN CONTENT */
main {
  flex: 1;
  padding: 2em 1em;
  max-width: 1100px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 2em;
}

/* SECTION TITLES */
.page-title, h2, h3 {
  color: #003366;
  margin-top: 2em;
  font-weight: 600;
}

p {
  line-height: 1.7;
  margin-bottom: 1.5em;
}

/* SERVICE BOXES */
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3em;
  flex-wrap: wrap;
  gap: 2em;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-text-box {
  background: linear-gradient(to right, #cce0ff, #e6f0ff);
  padding: 2em;
  border-radius: 10px;
  flex: 1;
  min-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-text-box h3 {
  margin-top: 0;
}

.service-img {
  flex: 1;
  max-width: 500px;
  min-width: 280px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* RIBBON */
.ribbon {
  background: linear-gradient(to right, #cce0ff, #e6f0ff);
  padding: 3em 1em;
  width: 100%;
}

.ribbon-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.ribbon h2 {
  margin: 0 0 0.5em 0;
  color: #003366;
  font-size: 2em;
}

.ribbon p {
  margin: 0;
  color: #003366;
  font-size: 1.1em;
}

/* CONTACT FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 600px;
  margin-top: 2em;
}

input, textarea {
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  font-family: inherit;
  transition: border 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #0077cc;
}

button {
  padding: 0.9em;
  background-color: #003366;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0055aa;
}

/* FOOTER */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 2em 1em;
  margin-top: 3em;
  font-size: 0.95em;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  margin-bottom: 1em;
}

.footer-links a {
  color: white;
  margin: 0 1em;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #66ccff;
}

.footer-note {
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-row, .service-row.reverse {
    flex-direction: column;
  }

  nav a {
    display: inline-block;
    margin: 0.5em;
  }

  .ribbon-content h2 {
    font-size: 1.5em;
  }
}


.small-subtitle {
  font-size: 0.6em;
  font-weight: normal;
  display: inline-block;
  margin-left: 0.3em;
  letter-spacing: 1px;
}


