:root {
    --navy-deep: #213A50;
    --steel-blue: #6796B3;
    --soft-lilac: #DDB0D8;
    --cloud-white: #F0F0F0;
    --pure-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --font-primary: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--pure-white);
    overflow-x: hidden;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(33, 58, 80, 0.08);
    z-index: 1000;
    padding: 0.875rem 0;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.navbar-brand img {
    height: 32px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--steel-blue);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    border-radius: 4px;
}

.btn-primary {
    background: var(--navy-deep);
    color: var(--pure-white);
}

.btn-primary:hover {
    background: var(--steel-blue);
    color: var(--pure-white);
    box-shadow: 0 4px 12px rgba(103, 150, 179, 0.3);
}

.btn-outline-secondary {
    background: transparent;
    border: 2px solid var(--steel-blue);
    color: var(--steel-blue);
}

.btn-outline-secondary:hover {
    background: var(--steel-blue);
    color: var(--pure-white);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.0625rem;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 9rem 0 5rem;
    background: linear-gradient(135deg, rgba(103, 150, 179, 0.18) 0%, rgba(221, 176, 216, 0.14) 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-signals {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-signals span {
    font-size: 0.875rem;
    color: var(--text-gray);
    padding: 0.5rem 1rem;
    background: rgba(103, 150, 179, 0.1);
    border-left: 3px solid var(--steel-blue);
}

.hero-panel {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(33, 58, 80, 0.12);
    position: relative;
}

.panel-indicator {
    margin-bottom: 2rem;
}

.panel-indicator:last-of-type {
    margin-bottom: 2.5rem;
}

.indicator-label {
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.indicator-bar {
    height: 8px;
    background: var(--cloud-white);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.indicator-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--steel-blue) 0%, var(--soft-lilac) 100%);
    width: 70%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { width: 70%; }
    50% { width: 85%; }
}

@media (prefers-reduced-motion: reduce) {
    .indicator-fill {
        animation: none;
    }
}

.indicator-meta {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.panel-image {
    width: 100%;
    border-radius: 6px;
    margin-top: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    text-align: center;
    margin-bottom: 3.5rem;
}

.process-areas {
    padding: 6rem 0;
    background: var(--pure-white);
}

.process-column {
    padding: 2.5rem;
    background: var(--cloud-white);
    border-left: 4px solid var(--steel-blue);
    height: 100%;
}

.column-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
}

.column-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.column-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(103, 150, 179, 0.15);
}

.column-list li:last-child {
    border-bottom: none;
}

.column-output {
    font-size: 0.9375rem;
    color: var(--steel-blue);
    font-weight: 500;
    padding: 0.875rem 1.25rem;
    background: rgba(103, 150, 179, 0.1);
    border-radius: 4px;
}

.before-after {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(221, 176, 216, 0.08) 0%, rgba(103, 150, 179, 0.12) 100%);
}

.before-block, .after-block {
    padding: 2.5rem;
    background: var(--pure-white);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(33, 58, 80, 0.08);
}

.block-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
}

.block-list {
    list-style: none;
    padding: 0;
}

.block-list li {
    padding: 1rem 0;
    font-size: 1.125rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(103, 150, 179, 0.12);
}

.block-list li:last-child {
    border-bottom: none;
}

.arrow-icon {
    font-size: 2.5rem;
    color: var(--steel-blue);
}

.workflow-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(33, 58, 80, 0.12);
    max-width: 600px;
}

.method-pipeline {
    padding: 6rem 0;
    background: var(--pure-white);
}

.pipeline-wrapper {
    position: relative;
    padding: 3rem 0;
}

.pipeline-line {
    position: absolute;
    top: 4rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--steel-blue) 0%, var(--soft-lilac) 100%);
    z-index: 1;
}

.pipeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.pipeline-node {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.node-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--navy-deep);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(33, 58, 80, 0.2);
}

.node-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.node-details {
    list-style: none;
    padding: 0;
    font-size: 0.9375rem;
    color: var(--text-gray);
}

.node-details li {
    margin-bottom: 0.5rem;
}

.mini-cases {
    padding: 6rem 0;
    background: var(--cloud-white);
}

.case-row {
    padding: 2rem;
    background: var(--pure-white);
    border-left: 4px solid var(--soft-lilac);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.case-row:hover {
    box-shadow: 0 4px 16px rgba(33, 58, 80, 0.1);
    transform: translateX(8px);
}

.case-industry {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.case-facts {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.case-fact {
    font-size: 1rem;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    background: rgba(103, 150, 179, 0.1);
    border-radius: 4px;
}

.case-image {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(33, 58, 80, 0.12);
}

.stack-integration {
    padding: 6rem 0;
    background: var(--pure-white);
}

.integration-block {
    padding: 2rem;
    background: var(--cloud-white);
    border-left: 4px solid var(--steel-blue);
    height: 100%;
}

.block-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.integration-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.governance-panel {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(103, 150, 179, 0.1) 0%, rgba(221, 176, 216, 0.1) 100%);
    border-radius: 6px;
    border-left: 4px solid var(--soft-lilac);
}

.panel-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 0.75rem;
}

.panel-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.faq-section {
    padding: 6rem 0;
    background: var(--cloud-white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--pure-white);
    margin-bottom: 1rem;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(33, 58, 80, 0.06);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--navy-deep);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(103, 150, 179, 0.05);
}

.faq-question i {
    transition: var(--transition);
    color: var(--steel-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-section {
    padding: 6rem 0;
    background: var(--pure-white);
}

.contact-info {
    padding-right: 2rem;
}

.contact-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-steps {
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-steps li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1.0625rem;
}

.contact-image {
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-form {
    padding: 3rem;
    background: var(--cloud-white);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(33, 58, 80, 0.08);
}

.form-label {
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(103, 150, 179, 0.2);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--steel-blue);
    box-shadow: 0 0 0 3px rgba(103, 150, 179, 0.1);
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.375rem;
}

.footer {
    background: var(--navy-deep);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--pure-white);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--pure-white);
    text-decoration: underline;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-top: 2rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    color: var(--pure-white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.3s ease;
}

.cookie-notice.hide {
    animation: slideDown 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes slideDown {
    from { transform: translateY(0); }
    to { transform: translateY(100%); }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
    color: var(--soft-lilac);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-subtitle {
        font-size: 1.125rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .pipeline-nodes {
        flex-direction: column;
    }
    .pipeline-node {
        margin-bottom: 2rem;
    }
    .pipeline-line {
        display: none;
    }
    .nav-menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 7rem 0 3rem;
    }
    .hero-title {
        font-size: 1.875rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .btn-lg {
        width: 100%;
    }
    .case-facts {
        flex-direction: column;
    }
    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    .contact-form {
        padding: 2rem;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    .cookie-actions .btn {
        width: 100%;
    }
}

.about-hero {
    padding: 9rem 0 5rem;
    background: linear-gradient(135deg, rgba(103, 150, 179, 0.18) 0%, rgba(221, 176, 216, 0.14) 100%);
}

.about-mission-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 2.5rem;
}

.mission-principles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.principle-item {
    font-size: 1.5rem;
    color: var(--text-dark);
    padding: 1.25rem 1.75rem;
    background: var(--pure-white);
    border-left: 4px solid var(--steel-blue);
    font-weight: 500;
}

.about-abstract-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(33, 58, 80, 0.12);
}

.pmi-approach {
    padding: 6rem 0;
    background: var(--pure-white);
}

.approach-table {
    max-width: 900px;
    margin: 0 auto;
}

.approach-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--cloud-white);
    border-left: 4px solid var(--soft-lilac);
    margin-bottom: 1.5rem;
}

.approach-risk, .approach-response {
    font-size: 1.0625rem;
    color: var(--text-dark);
}

.project-standards {
    padding: 6rem 0;
    background: var(--cloud-white);
}

.standards-list {
    max-width: 1000px;
    margin: 0 auto;
}

.standard-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--pure-white);
    border-left: 4px solid var(--steel-blue);
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.standard-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    min-width: 80px;
}

.standard-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 0.75rem;
}

.standard-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.ethical-approach {
    padding: 6rem 0;
    background: var(--pure-white);
}

.ethical-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--cloud-white);
    height: 100%;
    transition: var(--transition);
}

.ethical-card:hover {
    box-shadow: 0 4px 16px rgba(33, 58, 80, 0.1);
}

.ethical-icon {
    font-size: 3rem;
    color: var(--steel-blue);
    margin-bottom: 1.5rem;
}

.ethical-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.ethical-text {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.collaboration-timeline {
    padding: 6rem 0;
    background: var(--cloud-white);
}

.timeline-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.timeline-checkpoint {
    text-align: center;
    position: relative;
}

.checkpoint-marker {
    width: 48px;
    height: 48px;
    background: var(--navy-deep);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(33, 58, 80, 0.2);
}

.checkpoint-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.checkpoint-text {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.about-cta {
    padding: 6rem 0;
    background: var(--pure-white);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(103, 150, 179, 0.1) 0%, rgba(221, 176, 216, 0.1) 100%);
    border-radius: 8px;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 1.25rem;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.contact-page-hero {
    padding: 9rem 0 5rem;
    background: linear-gradient(135deg, rgba(103, 150, 179, 0.18) 0%, rgba(221, 176, 216, 0.14) 100%);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 1.25rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.contact-page-content {
    padding: 6rem 0;
    background: var(--pure-white);
}

.contact-info-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--cloud-white);
    height: 100%;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 3rem;
    color: var(--steel-blue);
    margin-bottom: 1.5rem;
}

.info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.info-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.info-text a {
    color: var(--steel-blue);
    text-decoration: none;
    transition: var(--transition);
}

.info-text a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    padding: 3rem;
    background: var(--cloud-white);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(33, 58, 80, 0.08);
}

.form-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.form-section-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.contact-page-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-additional-info {
    padding: 6rem 0;
    background: var(--cloud-white);
}

.additional-box {
    padding: 3rem;
    background: var(--pure-white);
    border-left: 4px solid var(--steel-blue);
}

.additional-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
}

.additional-text {
    font-size: 1.0625rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 9rem 0 6rem;
    background: linear-gradient(135deg, rgba(103, 150, 179, 0.18) 0%, rgba(221, 176, 216, 0.14) 100%);
}

.thanks-icon {
    font-size: 5rem;
    color: var(--steel-blue);
    margin-bottom: 2rem;
}

.thanks-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
}

.thanks-text {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps {
    background: var(--pure-white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 24px rgba(33, 58, 80, 0.12);
}

.next-steps-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--navy-deep);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 1.0625rem;
    color: var(--text-dark);
    text-align: left;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 9rem 0 6rem;
    background: var(--pure-white);
}

.legal-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.75rem;
}

.legal-updated {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 1.0625rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.0625rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: var(--steel-blue);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--navy-deep);
}

.legal-back {
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 991px) {
    .about-mission-title {
        font-size: 2.25rem;
    }
    .principle-item {
        font-size: 1.25rem;
    }
    .approach-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .timeline-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .page-title {
        font-size: 2.25rem;
    }
    .thanks-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .standard-item {
        flex-direction: column;
        gap: 1rem;
    }
    .standard-number {
        min-width: auto;
    }
    .timeline-wrapper {
        grid-template-columns: 1fr;
    }
    .thanks-icon {
        font-size: 3.5rem;
    }
    .thanks-actions {
        flex-direction: column;
    }
    .thanks-actions .btn {
        width: 100%;
    }
    .contact-form-wrapper {
        padding: 2rem;
    }
    .thanks-next-steps {
        padding: 2rem 1.5rem;
    }
}