/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f6f6f6;
  margin: 0; /* Add this line */
}


/* Header and navigation */
header {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: auto;
}



header img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

nav {
  width: 100%;
  background-color: #3c3c3c;
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  width: 100%;
}

nav ul li {
  margin: 0 10px;
  display: flex;
  align-items: center;
}

nav ul li a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  line-height: 1.6; /* Add this line */
}


nav ul li a:hover {
  background-color: #555;
}

/* Main content */
main {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  margin-bottom: 40px;
}

h1, h2, h3 {
  margin-bottom: 20px;
  color: #444;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
  font-size: 1rem;
  text-align: justify;
}

ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  background-color: #3c3c3c;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #555;
}

/* Contact form */
form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

label {
  font-weight: bold;
}

input, textarea {
  padding: 10px;
  font-size: 1rem;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  background-color: #3c3c3c;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #555;
}

/* Footer */
footer {
  padding: 20px;
  background-color: #3c3c3c;
  color: #fff;
  text-align: center;
}

.flex-container-left {
    display: flex;
    align-items: flex-start; /* Aligns items to the top */
}

.flex-container-left .text-content {
    flex: 1; /* Allows text block to occupy remaining space */
    margin-left: 10px;
}

.flex-container-left img.left-aligned {
    max-width: 150px; /* Adjust width according to how small you want the image to be */
    height: auto;
}

