/* Basic reset and typography */
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: var(--light-blue);
    color: var(--dark-green);
    transition: margin-left 0.3s ease;
}

body {
    margin-left: 3.75rem; /* Sidebar collapsed width */
}

/* When sidebar is open */
body.sidebar--open {
    margin-left: 12.5rem; /* Sidebar expanded width */
}

/* Main layout styles */
main {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Headings */
h1, h2, h3 {
    color: #444; 
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

/* Paragraphs and Links */
p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    color: #444;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Lists */
ul {
    margin-bottom: 1rem;
    list-style: disc;
    padding-left: 1.5rem;
}

/* Footer */
footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    text-align: center;
    color: var(--dark-gray);
}

.agreement-text {
  font-size: 0.875rem; /* Small, readable size */
  color: var(--dark-green); /* Matches the color scheme */
  text-align: center; /* Center-align for form consistency */
  margin-top: 1rem; /* Spacing above the text */
}

.agreement-text a {
  color: var(--steel-blue); /* Highlight links */
  text-decoration: none; /* Clean link style */
}

.agreement-text a:hover {
  text-decoration: underline; /* Add underline on hover */
}
