/* Reset */
body, h1, h2, h3, p, div, section, footer, header {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonts & Base */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #ececec;
    padding: 20px;
}

.container {
    max-width: 580px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}

/* Header */
header {
    text-align: left;
    margin-bottom: 20px;
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 210px;
    margin-top: 30px;
    margin-bottom: 55px;

}

.tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: normal;
    color: #364CF0;
    margin-bottom: 40px;
}

/* Main Content */
main {
    font-size: 0.85rem;
    margin-bottom: 40px;
}

main p {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* Section */
section {
    font-size: 0.85rem;
    margin-bottom: 40px;
    text-align: left;
    overflow-wrap: break-word;
    white-space: normal;
}

section h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

section p {
    font-size: 0.85rem;
    color: #222;
    margin-bottom: 8px;
}

.icon-inline {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Strong Text */
strong {
    color: #364CF0;
    font-weight: 600; /* optional: a bit less heavy than default */
  }  

/* Links */
a {
    color: #364CF0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid #364CF0; /* Bright blue */
    margin: 2rem 0;
    opacity: 0.5; /* Slightly subtle */
  }

/* Footer */
footer {
    margin-top: 40px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.7rem;
    color: #555;
    max-width: 100%;
    overflow: hidden;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

footer a {
    color: #364CF0;
}

footer a:hover {
    color: #2c3fce;
    text-decoration: underline;
}

.footer-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 6px;
    margin-top: -2px; /* tweak if needed */
    display: inline-block;
  }

/* CTA */
.cta-container {
    text-align: center;
    margin-top: 5px;
}

.cta-button {
    display: inline-block;
    background-color: #364CF0;
    color: #ececec;
    padding: 10px 20px;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2c3fce;
    color: #ececec;
}