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

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

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    z-index: 1000;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #66bb6a;
}

/* Header Section */
header {
    background-color: #66bb6a;
    color: white;
    padding: 100px 20px;
    text-align: center;
    margin-top: 50px; /* account for fixed nav */
}

header h1 {
    font-size: 3rem;
}

header p {
    font-size: 1.2rem;
}

.cta-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #fff;
    color: #66bb6a;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #4caf50;
    color: white;
}

/* Main Content */
main {
    padding: 20px;
    max-width: 1000px;
    margin: 20px auto;
    margin-top: 70px;
}

.section {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

ul, ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

/* Animations */
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
