/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
    background-color: #f2f2f2;
}

/* Header Styles */
header {
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

h1 {
    font-size: 36px;
    margin: 0;
    color: #444;
}

/* Navigation Styles */
nav {
    position: fixed;
    top: 50%;
    right: 0;
    height: fit-content;
    transform: translateY(-50%);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 200px;
    opacity: 0.1; /* hide the navigation by default */
    transition: opacity 0.3s ease;
}

nav:hover {
    opacity: 1; /* show the navigation when hovered */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid #ccc;
}

nav a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 20px;
}


nav a:hover {
    background-color: #fff;
    color: #444;
}

/*Section Style*/
section {
    margin: 50px auto;
    max-width: 800px;
    padding: 40px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background-color: #fff;
    text-align: left;
}

section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

section p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

section a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

section a:hover {
    text-decoration: underline;
}

section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}
