body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; line-height: 1.6; color: #333; padding-top: 70px; }

header {
    background: url('Front-page 04.jpg') no-repeat center/cover;
    height: 100vh;
    position: relative;
}
.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.0);
    z-index: 1;
}
.header-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.header-content h1 {
    font-size: 3em;
    font-weight: bold;
}
.header-content p {
    font-size: 1.2em;
    margin-top: 10px;
}
header {
    background: url('Front-page 04.jpg') no-repeat center/cover;
    height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; color: white; position: relative;
}
header::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65);
}
header h1 { font-size: 3em; z-index: 1; }
header p { font-size: 1.2em; z-index: 1; }
nav { background: #1a3c5e; padding: 1em; position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; }
nav ul { list-style: none; display: flex; justify-content: center; margin: 0; padding: 0; }
nav ul li { margin: 0 20px; }
nav ul li a { color: white; text-decoration: none; font-weight: bold; transition: color 0.3s; }
nav ul li a:hover { color: #f4a261; }
.section { padding: 50px 20px; max-width: 1200px; margin: 0 auto; text-align: center; }
.services { background: #f9f9f9; }
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; margin-top: 20px;
}
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
}
.service-card {
    background: white; padding: 20px; border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.values {
    background: url('https://images.pexels.com/photos/1632791/pexels-photo-1632791.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1')
    no-repeat center/cover; color: white;
}
.values h2 { margin-bottom: 20px; }
.values p { max-width: 800px; margin: 0 auto 20px; }
.contact { background: #1a3c5e; color: white; }
form {
    display: flex; flex-direction: column; max-width: 600px; margin: 30px auto;
}
form input, form select, form textarea {
    margin-bottom: 15px; padding: 12px; border: 1px solid #ddd; border-radius: 4px;
    font-size: 1em; font-family: inherit;
}
form input:focus, form select:focus, form textarea:focus {
    outline: none; border-color: #f4a261; box-shadow: 0 0 5px rgba(244, 162, 97, 0.3);
}
.contact input, .contact textarea, .contact select {
    background: white; color: #333;
}
.career form input, .career form select, .career form textarea {
    background: white; color: #333;
}
form button {
    padding: 12px 24px; background: #f4a261; border: none; color: white; cursor: pointer;
    font-size: 1em; font-weight: bold; border-radius: 4px; transition: background 0.3s;
}
form button:hover { background: #e76f51; }
footer { background: #333; color: white; text-align: center; padding: 10px 0; }
@media (max-width: 768px) {
    header h1 { font-size: 2em; }
    nav ul { flex-direction: column; text-align: center; }
}
.cta-button {
  margin-top: 20px;
  display: inline-block;
  background-color: #f4a261;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}
.cta-button:hover {
  background-color: #e76f51;
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-in forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}