/* Define the custom logo colors globally for use in the wordmark */
:root {
    --primary-blue: #0056B3; /* Royal Blue - Used in Logo & H1 */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    margin: 0;
    line-height: 1.6;
    padding: 0;
}
.container {
    max-width: 960px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}

/* New Flex Container for Logo and H1 Wordmark */
.logo-wordmark-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px; /* Adjust spacing above the nav */
}

header h1 {
    /* This H1 is now the wordmark next to the logo */
    color: var(--primary-blue); /* Use the logo's primary color */
    font-size: 2.8em;
    margin: 0 0 0 10px; /* 10px margin to separate from the SVG icon */
    font-weight: 700;
}

.tagline {
    font-size: 1.2em;
    color: #6c757d;
    margin: 10px 0 20px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.expertise-item h3 {
    font-size: 1.4em;
    color: var(--primary-blue);
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
    margin-top: 0;
}
.expertise-item ul {
    padding-left: 0;
    list-style-type: none;
}
.expertise-item li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}
nav a {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
    font-size: 1.1em;
    padding: 5px 0;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
}
section {
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}
section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}
h2 {
    color: #212529;
    font-size: 2em;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}
h3 {
    color: #343a40;
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 15px;
}
ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}
ul li {
    margin-bottom: 8px;
}
.intro-text {
    font-size: 1.1em;
    margin-bottom: 25px;
    text-align: center;
}
.plexient-definition {
    background-color: #e6f2ff;
    border-left: 5px solid #007bff;
    padding: 15px 20px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 4px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
    margin-top: 30px;
}
.stat-item {
    background-color: #f1f7fe;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.stat-item strong {
    display: block;
    font-size: 2.2em;
    color: #007bff;
    margin-bottom: 5px;
    font-weight: 700;
}
.stat-item span {
    font-size: 1em;
    color: #555;
}
.contact-info {
    text-align: center;
    margin-top: 30px;
}
.contact-info p {
    margin: 10px 0;
    font-size: 1.1em;
}
.contact-info a {
    color: #007bff;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #e9ecef;
    color: #6c757d;
    font-size: 0.9em;
}
