/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #000;
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #999;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

}

.overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2rem;
}

/* HEADER NAV */
header {
    width: 100%;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    gap: 2rem;
}

nav li {
    font-weight: bold;
}

/* SECTIONS */
section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: auto;
}

section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

section p {
    color: #ddd;
}

img {
    width: 100%;
    border-radius: 8px;
}

/* SERVICES */
.service-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .service-content {
        flex-direction: row;
        align-items: center;
    }

    .service-content img {
        width: 40%;
    }

    .service-content p {
        width: 60%;
    }
}

.contact-persons {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.person {
    flex: 1 1 calc(50% - 1rem); /* Two in a row with spacing */
    display: flex;
    flex-direction: column; /* Stack image and text */
    align-items: center;
    text-align: center;
    background-color: #111;
    padding: 1.5rem;
    border-radius: 8px;
}

.person img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Stack full width on small screens */
@media (max-width: 768px) {
    .person {
        flex: 1 1 100%;
    }
}

