:root {
    /* Color Conversions */
    /* Highlight/Buttons: CMYK 80 0 77 0 -> Approx RGB 51 255 59 -> #33FF3B */
    --color-highlight: #33FF3B;

    /* Background: White or CMYK 71 65 64 70 -> Approx RGB 22 27 28 -> #161B1C */
    --color-bg-dark: #161B1C;
    --color-bg-light: #FFFFFF;

    /* Text Colors */
    --color-text-main: #161B1C; /* Using the dark color for text on light bg */
    --color-text-inverse: #FFFFFF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* Typography: Gilroy requested. Fallback to Manrope (similar geometric sans) or system sans-serif */
    font-family: 'Gilroy', 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gilroy', 'Manrope', sans-serif;
    font-weight: 800; /* Gilroy often looks best bold */
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Header */
.header {
    background-color: var(--color-bg-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-bg-dark);
}

.logo a {
    display: flex;
    align-items: center;
    color: inherit;
}

.logo-icon {
    height: 40px;
    width: auto; /* Maintain aspect ratio */
    margin-right: 12px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a:not(.btn) {
    font-weight: 600;
    color: var(--color-text-main);
}

.nav a:not(.btn):hover {
    color: #00aa22; /* Darker green for hover on white */
}

.nav a.nav-current {
    color: var(--color-highlight);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px; /* Rounded buttons often suit Gilroy style */
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-highlight);
    color: var(--color-bg-dark); /* Dark text on bright green looks better/more readable */
}

.btn-primary:hover {
    background-color: #2ce635;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(51, 255, 59, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-highlight);
    color: var(--color-highlight);
}

.btn-outline:hover {
    background-color: var(--color-highlight);
    color: var(--color-bg-dark);
}

/* Hero Section */
.hero {
    /* Using the dark CMYK color for the Hero background to contrast */
    background-color: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: 150px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero .btn-outline {
    margin-left: 15px;
}

/* Services / Products */
.services {
    background-color: var(--color-bg-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-bg-dark);
}

.card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--color-highlight);
    height: 100%; /* Make cards full height */
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    min-height: 90px; /* Increased to accommodate larger logos */
}

.product-icon {
    height: 80px;
    width: 140px; /* Increased width to allow wide logos to scale up */
    object-fit: contain; /* Ensure logo fits within dimensions without distortion */
    object-position: left; /* Keep left alignment */
    margin-right: 20px;
}

.card h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

/* About - Using dark background again for visual interest */
.about {
    background-color: var(--color-bg-dark);
    color: var(--color-text-inverse);
    text-align: center;
}

.about .section-title {
    color: var(--color-text-inverse);
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Five Rights Section (homepage) */
.rights {
    background-color: #f0f4f0;
    padding: 80px 0;
}

.rights .section-title {
    margin-bottom: 1rem;
}

.rights-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--color-text-main);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 0.5rem;
}

.right-card {
    background: var(--color-bg-light);
    padding: 32px 28px;
    border-radius: 12px;
    border-top: 4px solid var(--color-highlight);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.right-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.right-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    color: var(--color-bg-dark);
}

.right-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--color-text-main);
    opacity: 0.95;
    flex-grow: 1;
}

.rights .btn {
    margin-top: 2.5rem;
}

.product-rights {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
    opacity: 0.85;
}

.product-rights a {
    color: var(--color-bg-dark);
    font-weight: 600;
    border-bottom: 1px solid var(--color-highlight);
}

.product-rights a:hover {
    color: #00aa22;
}

/* Manifesto page */
.container--narrow {
    max-width: 720px;
}

.manifesto-page {
    padding: 48px 0 100px;
}

.manifesto-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.manifesto-label {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-text-main);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.manifesto-title {
    font-size: 2.5rem;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.manifesto-subtitle {
    font-size: 1.35rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 1.75rem;
}

.manifesto-divider {
    width: 80px;
    height: 4px;
    background: var(--color-highlight);
    margin: 1.75rem auto;
    border-radius: 2px;
}

.manifesto-epigraph {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--color-text-main);
    opacity: 0.95;
    max-width: 540px;
    margin: 0 auto;
    padding: 0 1rem;
}

.manifesto-epigraph cite {
    display: block;
    font-size: 0.95rem;
    margin-top: 0.75rem;
    font-style: normal;
    opacity: 0.8;
}

.manifesto-meta {
    font-size: 0.9rem;
    opacity: 0.65;
    margin-bottom: 0 !important;
}

.manifesto-intro {
    margin-bottom: 3.5rem;
}

.manifesto-intro h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.manifesto-intro > p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* Manifesto table of contents */
.manifesto-toc {
    background: #f5f8f5;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
}

.manifesto-toc h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: var(--color-text-main);
    opacity: 0.8;
}

/* TOC Articles: native decimal list so number aligns with text */
.manifesto-toc-list {
    list-style: disc;
    list-style-position: outside;
    padding-left: 1.75em;
    margin: 0;
}

.manifesto-toc-list li {
    position: relative;
    padding-left: 0.35em;
    margin-bottom: 0.5rem;
}

.manifesto-toc-list li::before {
    content: none;
    display: none;
}

.manifesto-toc-list li:last-child {
    margin-bottom: 0;
}

.manifesto-toc a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-bg-dark);
    display: block;
    padding: 0.4rem 0;
    border-bottom: 1px solid transparent;
}

.manifesto-toc a:hover {
    color: #00aa22;
    border-bottom-color: var(--color-highlight);
}

/* Manifesto articles */
.manifesto-article {
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.manifesto-article:last-of-type {
    border-bottom: none;
}

.manifesto-article h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.35;
    padding-top: 0.25rem;
}

.manifesto-article h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-highlight);
    margin-top: 0.75rem;
    border-radius: 2px;
}

.article-num {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-highlight);
    margin-bottom: 0.35rem;
}

.manifesto-article > p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.manifesto-article h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 0.6rem;
    color: var(--color-text-main);
}

.manifesto-article h3 + p,
.manifesto-article h3 + ul {
    margin-top: 0;
}

/* Key protections & Enforcement: numbered lists aligned with paragraph text */
.manifesto-list {
    list-style: disc;
    list-style-position: outside;
    margin: 0.75rem 0 1.25rem 0;
    padding-left: 1.75em;
}

.manifesto-list li {
    position: relative;
    padding-left: 0.35em;
    margin-bottom: 0.6rem;
    line-height: 1.6;
    font-size: 1.02rem;
}

.manifesto-list li::before {
    content: none;
    display: none;
}

.manifesto-list li:last-child {
    margin-bottom: 6pt;
}

.manifesto-article .manifesto-list {
    margin: 0.75rem 0 1.25rem 0;
}

.manifesto-article .manifesto-list li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    font-size: 1.02rem;
}

.manifesto-enforcement {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding-top: 1rem;
}

.manifesto-enforcement h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.manifesto-enforcement h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-highlight);
    margin-top: 0.75rem;
    border-radius: 2px;
}

.manifesto-enforcement p {
    font-size: 1.05rem;
    line-height: 1.75;
}

.manifesto-enforcement .manifesto-list {
    margin: 1rem 0 1.25rem 0;
}

.manifesto-enforcement .manifesto-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.manifesto-closing {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 1rem;
    border-top: 2px solid var(--color-highlight);
}

.manifesto-closing p:first-child {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.manifesto-closing .btn {
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background-color: #000; /* Slightly darker than the dark CMYK for footer */
    color: #888;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
}