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

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

/* This is the main container for the logo and title */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  
    /* 1. Set as a flex container */
    display: flex;

    /* 2. Align items vertically in the center */
    align-items: center;

    /* 3. Add space between the logo and the title */
    gap: 12px; /* 'gap' is the modern way to add space */

    /* Style the link */
    text-decoration: none; /* Remove underline from the link */
    color: #333; /* Set a text color */
}

/* Header */
header {
  background: #00467F;
  color: #fff;
  padding: 10px 0;
}

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

.logo {
  height: 50px;
}

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

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0, 70, 127, 0.7), rgba(0, 70, 127, 0.7)), url('imgs/hero-bg.webp') center/cover no-repeat;
  color: #fff;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background: #C81E2D;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Section */
.section {
  padding: 60px 0;
  text-align: center;
}

.section h2 {
  margin-bottom: 20px;
  color: #00467F;
}

/* Services */
.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Partners */
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.partners-logos img {
  height: 60px;
  filter: grayscale(20%);
}

/* Contact */
.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input, .contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background: #00467F;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}

/* Footer */
footer {
  background: #00467F;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}
