/* =======================
   GLOBAL STYLES
======================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
 font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f4f6fb;
  color: #222;
  line-height: 1.7;
  padding-top: 90px;
}

/* =======================
   NAVBAR
======================= */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
}

.nav-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #04386A;
}

/* =======================
   CONTENT
======================= */
.container {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  color: #04386A;
}

.section-intro {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: justify;
  text-align-last: left;
}

/* =======================
   FORM
======================= */
.contact-form {
  max-width: 500px;
  margin: 0 auto 40px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  background: white;
}

.contact-form textarea {
  resize: vertical;
}

.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.consent-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 4px 0 0 0;
  flex-shrink: 0;
}

.consent-box span {
  display: block;
}

.consent-box a {
  color: #04386A;
  text-decoration: underline;
}

button {
  width: 100%;
  background: #04386A;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #022a4f;
}

/* =======================
   FOOTER
======================= */
footer {
  background: #04386A;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 60px;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-size: 14px;
}

footer a:hover {
  text-decoration: underline;
}

/* =======================
   MOBILE
======================= */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 14px;
  }

  .section-title {
    font-size: 28px;
  }

  .container {
    padding: 30px 20px;
  }
}
