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

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

/* Header Styling */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
}

/* Navigation Styling */
nav {
    display: flex;
    justify-content: center;
    background: #444;
}

nav a {
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

nav a:hover {
    background: #555;
}

/* Main Content Styling */
main {
    padding: 2rem;
}

main h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

main p {
    margin-bottom: 1rem;
}

/* Button Styling */
.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.button:hover {
    background: #555;
}

/* Section Styling */
section {
    margin-bottom: 2rem;
}

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

/* Footer Styling */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

body .link-spacing {
    margin-top: 20px; /* Adjust the value as needed */
}