/* Additional styles for header layout */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation styles */
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

nav ul li:first-child {
  margin-left: 0;
}

/* Footer styles */
footer {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 50px 0 20px;
}

footer h3 {
  color: var(--white-color);
  margin-bottom: 20px;
  font-size: 18px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer p {
  margin-bottom: 10px;
}

footer i {
  margin-right: 10px;
  color: var(--accent-color);
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* Hero section styles */
.hero {
  background-color: var(--light-color);
  padding: 100px 0;
  text-align: center;
  background-image: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('../images/recruitment/interview.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white-color);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--white-color);
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Services section */
.services {
  padding: 80px 0;
}

.service-card {
  text-align: center;
  padding: 30px;
}

.service-icon {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* About section */
.about-section {
  background-color: var(--light-color);
  padding: 80px 0;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact form */
.contact-form {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 40px;
  border-radius: 8px;
}

.contact-info h3 {
  color: var(--white-color);
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-info i {
  margin-right: 10px;
  color: var(--accent-color);
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  
  .logo {
    margin-bottom: 20px;
  }
  
  nav ul {
    justify-content: center;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .row {
    flex-direction: column;
  }
  
  .col {
    margin-bottom: 30px;
  }
  
  .contact-form, .contact-info {
    margin-bottom: 30px;
  }
}
