body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;    margin: 0;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background-color: #007BFF;
    color: white;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
}

header p {
    margin: 0;
    font-size: 1.2em;
    font-weight: 400;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

h2 {
    color: #007BFF;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

/* Roadmap Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #007BFF;
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.timeline-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.timeline-card h3 {
    margin: 0;
    font-size: 1.5em;
    color: #007BFF;
}

.timeline-card p {
    margin: 10px 0 0;
    font-size: 1em;
    color: #666;
}

/* Information Section */
#info {
    background-color: white;
    padding: 40px 0;
}

/* Headings remain centered with the same blue color */
#info h2,
#info h3 {
    text-align: center;
    color: #007BFF;
    margin-bottom: 20px;
}

/* Paragraphs are now left aligned for improved readability */
#info p {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

/* Unordered lists are left aligned and neatly formatted */
#info ul {
    max-width: 800px;
    margin: 0 auto 20px;
    padding-left: 20px;
    text-align: left;
    list-style-position: inside;
}

/* Material Design styling for lists within the #info section */
#info ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0 auto 20px;
    max-width: 800px;
}

#info li {
    display: flex;
    align-items: flex-start;
    padding: 12px 16px;
    margin-bottom: 10px;
    background-color: white;
    border-radius: 4px;
    border-left: 4px solid transparent; /* Left accent border */
    transition: background-color 0.3s ease, border-left-color 0.3s ease;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;    margin: 0;
    font-size: 1.1em;
    color: #555;
}

#info li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #007BFF; /* Use the same blue as your headings */
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

#info li:hover {
    background-color: #f5f5f5;
    border-left-color: #007BFF;
}


/* GitHub Repositories */
.repo-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.repo-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    flex: 1;
    max-width: 200px; /* Smaller width for compactness */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.repo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.repo-card h3 {
    margin: 0;
    font-size: 1.2em; /* Smaller font size */
    color: #007BFF;
}

.repo-card p {
    margin: 10px 0 0;
    font-size: 0.9em; /* Smaller font size */
    color: #666;
}

/* Waitlist Form */
#waitlist-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#waitlist-form input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 1em;
}

#waitlist-form button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

#waitlist-form button:hover {
    background-color: #0056b3;
}

#waitlist-message {
    text-align: center;
    margin-top: 10px;
    color: #007BFF;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Privacy Statements */
.privacy-statements {
    margin-top: 30px;
    text-align: center;
}

blockquote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #007BFF;
    padding-left: 15px;
    margin: 20px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gray-text {
    color: #888;
}

/* Style clarifications section similar to privacy-statements */
.clarifications {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin: 2em 0 0 0;
  padding: 2em 2em 1.5em 2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  color: #222;
}

.clarifications h2 {
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  font-size: 1.25em;
  color: #1976d2;
}

.clarifications p {
  margin-bottom: 1em;
  line-height: 1.7;
  color: #333;
}
