/* General Resets */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif; /* Clean, modern sans-serif font */
    color: #333; /* Neutral text color */
    line-height: 1.6;
    background: #f9fafc; /* Light background for a professional feel */
}

/* Header Styling */
header {
    background: linear-gradient(90deg, #0070d2, #005fb2); /* Salesforce-inspired gradient */
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

header p {
    font-size: 1.2rem;
    margin: 10px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 20px 0 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Section Styling */
main {
    padding: 40px 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #005fb2; /* Accent color */
}

h3 {
    font-size: 1.5rem;
    color: #0070d2; /* Lighter shade for subheadings */
    margin-bottom: 10px;
}

p, li {
    font-size: 1rem;
    margin-bottom: 10px;
}

ul {
    margin-left: 20px;
    list-style: disc;
}

/* Call to Action Styling */
section#register a {
    display: inline-block;
    background: #0070d2;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}

section#register a:hover {
    background: #005fb2;
}

/* Footer Styling */
footer {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer nav ul {
    display: flex;
    justify-content: center;
    margin: 10px 0 0;
    list-style: none;
}

footer nav ul li {
    margin: 0 15px;
}

footer nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

footer nav ul li a:hover {
    text-decoration: underline;
}