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

header {
    background: var(--hero-background, url('background.jpeg')) 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-intro {
    max-width: 900px;
    margin: 20px auto 0;
}
.hero-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.hero-logo img {
    display: block;
    max-width: 220px;
    width: 100%;
    height: auto;
}
header {
    background: var(--hero-background, url('background.jpeg')) 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: var(--hero-overlay, 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; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
nav ul { list-style: none; display: flex; justify-content: flex-start; align-items: center; margin: 0; padding: 0; min-width: 0; }
nav .nav-links { flex: 1 1 auto; display: inline-flex; flex-wrap: nowrap; white-space: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
nav .nav-links::-webkit-scrollbar { display: none; }
nav .nav-lang { flex: 0 0 auto; white-space: nowrap; font-weight: bold; display: flex; align-items: center; gap: 0.1rem; }
nav .nav-lang a { color: #ffffff; text-decoration: none; }
nav .nav-lang a:hover { color: #f4a261; }
nav ul li { margin: 0 20px; }
nav .nav-links li:first-child { margin-left: 0; }
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);
}
.service-card p {
    white-space: pre-line;
}
.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) {
    body { padding-top: 58px; }
    nav { padding: 0.55rem 0.75rem; }
    nav .nav-lang {
        margin-left: auto;
        color: #ffffff;
        white-space: nowrap;
    }
    nav .nav-lang a,
    nav .nav-lang a:visited {
        color: #ffffff !important;
        text-decoration: none;
    }
    nav ul {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 0;
    }
    nav ul li {
        margin: 0 0.35rem;
        flex: 0 0 auto;
    }
    nav ul li:first-child {
        margin-left: 0;
    }
    nav ul li a {
        font-size: 0.72rem;
        letter-spacing: 0.01em;
    }
    nav ul li:last-child a {
        font-size: 0.7rem;
    }
    header {
        min-height: 86vh;
        height: auto;
    }
    .header-content {
        min-height: calc(100svh - 58px);
        padding: 2rem 1rem 1.5rem;
    }
    .header-content img {
        max-width: 140px !important;
        margin-bottom: 12px !important;
    }
    .header-content h1 { font-size: 1.5em; }
    .header-content p { font-size: 1rem; }
    .header-intro {
        margin-top: 10px;
        max-width: 100%;
        font-size: 0.92rem;
    }
    .cta-button {
        padding: 11px 18px;
        margin-top: 14px;
    }
    .section { padding: 40px 16px; }
    .services-grid { grid-template-columns: 1fr; }
}
.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;
  }
}