/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #f7f8fa;
    color: #333;
}

/* Container for centered content */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Header Styles */
header {
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    color: #212529;
    margin-bottom: 0.2em;
}

.tagline {
    font-size: 1.2em;
    color: #6c757d;
}

/* Main Content Styles */
main {
    padding: 0 10px;
}

h2 {
    font-size: 1.8em;
    color: #343a40;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

p, li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #495057;
}

ul {
    padding-left: 20px;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

code {
    background-color: #e9ecef;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

.effective-date {
    color: #6c757d;
    font-style: italic;
    margin-top: -15px;
}

/* Feature Boxes on Index */
.feature-box {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.feature-box h2 {
    font-size: 1.5em;
    border: none;
    margin-top: 0;
    padding-bottom: 5px;
}

/* Call to Action */
.call-to-action {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #007bff;
    color: #fff;
    border-radius: 8px;
}

.call-to-action h2 {
    color: #fff;
    border: none;
    margin-top: 0;
}

.call-to-action p {
    color: #f8f9fa;
}

.button {
    display: inline-block;
    background-color: #ffffff;
    color: #007bff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.2s, color 0.2s;
}

.button:hover {
    background-color: #f1f3f5;
    color: #0056b3;
    text-decoration: none;
}


/* Footer Styles */
.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.footer a {
    margin: 0 15px;
    color: #6c757d;
    font-size: 0.9em;
}

.footer a:hover {
    color: #007bff;
}