/* styles.css */
/* styles.css */

/* === GLOBAL === */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #F4F4F4;
    color: #000000;
  }
  
  /* === HEADER === */
  header {
    background-color: #001F3F;
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
  }
  
  header h1 {
    margin: 0;
    font-size: 2rem;
  }
  
  /* === NAVIGATION === */
  nav {
    background-color: #000000;
    display: flex;
    justify-content: flex-start; /* aligns items to the left */
    align-items: center;
    gap: 200px; /* spacing between items */
    padding: 10px;
    flex-wrap: wrap;
  }
  
  
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #3399ff;
  }
  
  /* === LOGO === */
  .logo-container img {
    height: 45px;
    vertical-align: middle;
  }
  
  /* === MAIN CONTENT === */
  main {
    padding: 2rem;
    
    display: flex;
    flex-direction: column;
    align-items: center;     /* Centers horizontally */
    justify-content: center; /* Centers vertically */
    text-align: center;      /* Centers text content */
    
  }
  
  .section-title {
    color: #007BFF;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    
  }
  
  /* === CARD STYLING === */
  .card {
    background: #f5f9ff;
    border-left: 6px solid #007BFF;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 600px;
  }
  
  /* === FOOTER === */
  footer {
    background-color: #001F3F;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
  }
  form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  input, textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
  }
  
  button {
    padding: 10px 15px;
    font-size: 1rem;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: fit-content;
  }
  
  button:hover {
    background-color: #3399ff;
  }
  .contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .card form {
    text-align: left;
  }
  
  input, textarea {
    margin-top: 5px;
  }
  
  button {
    align-self: center;
    margin-top: 10px;
  }
   
/*body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f7f9;
  color: #333;
}

header {
  background-color: #003366;
  color: white;
  padding: 1rem 2rem;
}

header h1 {
  margin: 0;
}

nav {
  background-color: #0055a5;
  display: flex;
  justify-content: space-around;
  padding: 0.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem;
}

footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #0055a5;
}

.card {
  background: white;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}*/
