* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('giorgio-trovato-BRl69uNXr7g-unsplash.jpg');
    background-size: cover; /* Ensures the image covers the entire viewport */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents image from repeating */
    background-attachment: fixed; /* Ensures the background stays fixed on scroll */
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #314a31;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

.hero-image img {
    width: 100%;
    height: auto;
    margin-top: 10px;
}

main {
    padding: 40px 0;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #eaf1ea;
}

p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: white
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
    line-height: 1.5;
}

ul li strong {
    color: #333;
}

.email-link {
    color: white;
    text-decoration: none; /* Remove underline */
}

.email-link:hover {
    text-decoration: underline; /* Optional: Add underline on hover */
}


.section-image {
    margin: 20px 0;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    font-size: 1em;
}
