.solution-page {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.solution-page-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    letter-spacing: 0.05rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-article-odd,
.solution-article-even {
    font-family: 'Roboto', sans-serif;
    color: var(--article-text);
    line-height: 1.75;
    padding: 2.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(40, 140, 160, 0.12);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.solution-article-odd:hover,
.solution-article-even:hover {
    border-color: rgba(77, 232, 194, 0.25);
    box-shadow: 0 0 20px rgba(77, 232, 194, 0.06);
    transform: translateY(-2px);
}

.solution-article-odd {
    background: var(--article-bg-odd);
}

.solution-article-even {
    background: var(--article-bg-even);
}

.solution-article-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-turquoise);
    margin-bottom: 1rem;
    letter-spacing: 0.02rem;
}

.solution-article-sub-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--gradient-mint-green);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.solution-article-odd p,
.solution-article-even p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.solution-article-odd strong,
.solution-article-even strong {
    color: var(--text-turquoise);
    font-weight: 500;
}

.examples {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--example-bg);
    border-radius: 10px;
    border: 1px solid rgba(40, 140, 160, 0.1);
}

.data-example-block {
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.data-example-block .solution-article-sub-title {
    margin-top: 0;
    color: #2c85ab;
}

.data-csv {
    font-family: 'Roboto Mono', 'Courier New', monospace;
    font-size: 0.95rem !important;
    color: #333333 !important;
    background: #f8f9fa;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    border-left: 4px solid var(--gradient-mint-green);
    display: block;
    margin-top: 0.5rem;
}

.example-block {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(40, 140, 160, 0.08);
}

.example-block:last-of-type {
    border-bottom: none;
}

.example-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--nav-link-color);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.example-data {
    font-family: 'Roboto', monospace;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--article-text);
    padding: 0.4rem 0.8rem;
    background: var(--example-block-bg);
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.example-data.highlighted {
    color: var(--gradient-mint-green);
    border: 1px solid rgba(77, 232, 194, 0.2);
}

.examples img,
.solution-article-odd img,
.solution-article-even img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 1.5rem;
    border: 1px solid rgba(40, 140, 160, 0.12);
}

.examples hr {
    border: none;
    height: 1px;
    background: rgba(40, 140, 160, 0.15);
    margin: 1.5rem 0;
}

.embedding-graph-container,
.data-prep-graph-container,
.node-graph-container {
    margin: 2rem auto;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 100%;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.embedding-graph-container:hover,
.data-prep-graph-container:hover,
.node-graph-container:hover {
    border-color: rgba(77, 232, 194, 0.25);
    box-shadow: 0 0 30px rgba(77, 232, 194, 0.06);
}

.embedding-graph,
.data-prep-graph,
.node-graph {
    width: 100%;
    height: auto;
    display: block;
}