

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #1a212a;
    border-bottom: 5px solid #444;
    border-radius: 0 0 15px 15px;
    flex-wrap: wrap; /* Allow the header elements to wrap */
}

header img.logo {
    width: 150px; /* Set a default smaller width */
    height: auto;
    flex-shrink: 0; /* Prevent the logo from shrinking */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; /* Ensure the nav items are lined horizontally */
    flex-wrap: wrap; /* Allow nav items to wrap when needed */
}

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

nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

nav ul li a.active {
    color: #ff5722;
    border-bottom: 3px solid #ff5722;
    padding-bottom: 5px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: #ccc;
    font-size: 14px;
}

.intro, .services, .contact {
    padding: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services ul {
    text-align: left;
    padding: 20px;
    border-left: 3px solid #ff5722;
}

.services li {
    margin-bottom: 10px;
    font-size: 16px;
}

h1 {
    color: #ff5722;
    margin-bottom: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
    header {
        padding: 10px; /* Reduce padding in the header */
    }

    header img.logo {
        width: 100px; /* Reduce the logo size on smaller screens */
    }

    nav ul {
        width: 100%;
        justify-content: center; /* Center navigation links */
    }

    nav ul li {
        display: block; /* Stack the navigation items vertically */
        text-align: center; /* Center-align the text */
        margin: 10px 0; /* Add margin for spacing */
    }

    .intro, .services, .contact {
        padding: 20px; /* Reduce padding in sections */
    }
}


.contact-image {
    width: 100%; /* Adjust based on your layout needs */
    max-width: 600px; /* Optional: limits size for larger screens */
    height: auto; /* Maintains aspect ratio */
    border-radius: 15px; /* Adjust the radius to your liking */
    margin-bottom: 20px; /* Adds some space below the image */
}

.frontpage-image {
    width: 100%; /* Adjust based on your layout needs */
    max-width: 600px; /* Optional: limits size for larger screens */
    height: auto; /* Maintains aspect ratio */
    border-radius: 15px; /* Adjust the radius to your liking */
    margin-bottom: 20px; /* Adds some space below the image */
}
