/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: #001d39;
    color: #fff;
    padding: 20px 0;
    position: relative;
}
nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
nav a:hover {
    color: #ffdd00;
}
.language-switch {
    position: absolute;
    top: 20px;
    right: 20px;
}
.language-switch a {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
}
.hero {
    background-image:linear-gradient(0deg, rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.57)), url('/images/HERO.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 200px 20px;
    text-align: center;
    max-width: 100% !important;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}
section:not(.hero) {
    padding: 20px 5px;
    max-width: 900px;
    margin: auto;
}
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 280px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.card h3 {
    margin-top: 0;
}
.footer {
    background: #001d39;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}
