body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

:root {
    --primary-color: #F8D568; /* Light yellow for animals theme */
    --secondary-color: #6B4E3B; /* Dark brown for contrast */
    --accent-color: #7EC8E3; /* Soft blue/teal for highlights */
    --text-color: #333;
    --light-bg: #FFF8E1; /* Lighter yellow background */
    --card-bg: #fff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 0.75rem;
}

.bg-light-yellow {
    background-color: var(--light-bg);
}

.accent-text {
    color: var(--accent-color);
}
.accent-text-brown {
    color: var(--secondary-color);
}

.word-break-all {
    word-break: break-all;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--secondary-color);
}

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* Responsive Typography */
@media (min-width: 1024px) {
    .site-name { font-size: 2.2rem; }
    .hero-section h1 { font-size: 3.8rem; }
    .section-title { font-size: 2.8rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-name { font-size: 2rem; }
    .hero-section h1 { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
}

@media (max-width: 767px) {
    .site-name { font-size: 1.5rem; }
    .hero-section h1 { font-size: 2.2rem; 
        word-break: break-word;
    }
    .hero-section .lead { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
}

/* Global Buttons & Links */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #62b1d3;
    border-color: #62b1d3;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #5a4233;
    border-color: #5a4233;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #62b1d3;
}

/* Header & Navigation */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    z-index: 1030;
}

.logo-img {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.offcanvas-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.offcanvas-title {
    color: var(--secondary-color);
    font-weight: 700;
}

.offcanvas-body {
    background-color: #fff;
}

.offcanvas .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offcanvas .navbar-nav .nav-link:last-child {
    border-bottom: none;
}

@media (max-width: 1199px) {
    .navbar-nav {
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-nav .nav-item {
        flex-shrink: 0;
    }
    .navbar-collapse {
        display: none !important;
    }
    .navbar-toggler {
        display: block;
    }
}

@media (min-width: 1200px) {
    .navbar-toggler {
        display: none;
    }
    .offcanvas {
        visibility: hidden;
    }
    .offcanvas.show {
        visibility: hidden;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    padding-top: 80px; /* Adjust for fixed header */
    background-color: var(--primary-color);
}

.hero-content {
    padding-left: 5%;
    padding-right: 5%;
    z-index: 2;
    color: var(--secondary-color);
}

.hero-image-container {
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%); /* Asymmetrical cut */
    background-color: var(--secondary-color);
    z-index: 1;
}

.hero-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    z-index: 0;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

@media (max-width: 991px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-bottom: 50px;
    }
    .hero-image-container {
        clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%); /* Adjust for mobile */
        height: 50vh;
        order: -1; /* Image above text on mobile */
    }
    .hero-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
        text-align: center;
    }
    .hero-image {
        position: relative;
        transform: none;
    }
    .hero-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
    }
}

/* About Us Section */
.about-section .img-fluid {
    max-width: 100%;
    height: auto;
}

.about-section .rounded {
    border-radius: var(--border-radius) !important;
}

.values-list li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Our Services Section (Step-by-Step Process) */
.process-timeline {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
    z-index: 0;
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step.left {
    justify-content: flex-start;
}

.process-step.right {
    justify-content: flex-end;
}

.step-marker {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    border: 5px solid var(--light-bg);
}

.step-content {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    width: 45%;
    position: relative;
    z-index: 1;
    color: var(--text-color);
}

.process-step.left .step-content {
    margin-right: calc(50% + 25px); /* Half width + marker radius */
    text-align: right;
}

.process-step.right .step-content {
    margin-left: calc(50% + 25px); /* Half width + marker radius */
    text-align: left;
}

.process-step.left .step-content::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background-color: var(--card-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 0;
}

.process-step.right .step-content::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background-color: var(--card-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 0;
}

@media (max-width: 767px) {
    .process-timeline::before {
        left: 20px;
        transform: translateX(0);
    }
    .step-marker {
        left: 10px;
        transform: translateX(0);
        border: 5px solid var(--light-bg);
        width: 40px;
        height: 40px;
    }

    .timeline-item.right {
        left: 0 !important;
    }
    .process-step {
        justify-content: flex-start;
    }
    .step-content {
        width: calc(100% - 70px);
        margin-left: 70px;
        text-align: left;
    }
    .process-step.left .step-content,
    .process-step.right .step-content {
        margin-right: 0;
        margin-left: 70px;
    }
    .process-step.left .step-content::after,
    .process-step.right .step-content::after {
        left: -20px;
        right: auto;
        transform: translateY(-50%) rotate(45deg);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        border-left: 1px solid rgba(0, 0, 0, 0.08);
        border-top: none;
        border-right: none;
    }
}

/* Key Features Section (Mobile Card Style) */
.feature-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

.feature-card .card-icon {
    font-size: 3rem;
    color: var(--accent-color);
    background-color: rgba(126, 200, 227, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .card-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.feature-card .card-text {
    color: var(--text-color);
}

/* Pricing Plans Section */
.pricing-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.border-accent {
    border-color: var(--accent-color);
    border-width: 2px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

.pricing-card .plan-title {
    font-size: 1.6rem;
    color: var(--secondary-color);
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.pricing-card .price sup {
    font-size: 1.5rem;
    top: -0.8em;
    color: var(--secondary-color);
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
}

.pricing-card .features-list li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.pricing-card .features-list li i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.pricing-card .info-icon {
    font-size: 0.9rem;
    color: var(--accent-color);
    cursor: pointer;
    margin-left: 5px;
    vertical-align: middle;
}

.pricing-card .small-text {
    font-size: 0.85rem;
    color: #666;
}

/* Our Team Section */
.team-member {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}

.team-member .member-name {
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.team-member .member-title {
    font-size: 0.95rem;
    color: #666;
}

/* Our Portfolio Section */
.nav-pills .nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 10px;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.7rem 1.5rem;
    background-color: #f0f0f0;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.portfolio-item .card {
    border: none;
    height: 100%;
    overflow: hidden;
}

.portfolio-item .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item .card:hover .card-img-top {
    transform: scale(1.05);
}

.portfolio-item .card-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.portfolio-item .card-text {
    font-size: 0.9rem;
    color: #666;
}

/* Industries We Serve Section (Carousel) */
.carousel-inner {
    height: 500px;
}

.carousel-item {
    height: 100%;
}

.carousel-bg-img {
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.carousel-caption h3 {
    color: #fff;
    font-size: 2.5rem;
}

.carousel-caption p {
    font-size: 1.2rem;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 1rem;
}

@media (max-width: 767px) {
    .carousel-inner {
        height: 350px;
    }
    .carousel-caption h3 {
        font-size: 1.8rem;
    }
    .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* How It Works: Vertical Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.timeline-line {
    position: absolute;
    width: 4px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    height: 0; /* Animated height */
}

.timeline-item {
    padding: 10px 0;
    position: relative;
    width: 50%;
    margin-bottom: 2rem;
}

.timeline-item.left {
    left: 0;
    padding-right: 40px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 40px;
}

.timeline-marker {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 4px solid var(--light-bg);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item.left .timeline-marker {
    right: -12.5px; /* Half of marker width */
}

.timeline-item.right .timeline-marker {
    left: -12.5px; /* Half of marker width */
}

.timeline-content {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    color: var(--text-color);
}

.timeline-content h3 {
    color: var(--secondary-color);
}

@media (max-width: 767px) {
    .timeline-line {
        left: 20px;
        transform: translateX(0);
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        left: 0;
    }
    .timeline-item.left .timeline-marker,
    .timeline-item.right .timeline-marker {
        left: 20px;
        right: auto;
        transform: translateY(-50%) translateX(-50%);
    }
}

/* Testimonials: Dynamic Quote Wall */
.testimonial-grid {
    min-height: 600px;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px
}

.testimonial-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(33.333% - 20px);
    background-color: var(--card-bg);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    max-width: 350px;
    text-align: center;
    color: var(--text-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-bubble:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-bubble .quote-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-bubble .author-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.testimonial-bubble .author-title {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 767px) {
    .testimonial-grid {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .testimonial-bubble {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        max-width: 100%;
        width: 100%;
        transform: none !important;
        margin: 0 auto;
    }
}

/* FAQ: Interactive Help Widget */
.faq-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1020;
}

.faq-toggle-btn {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transition: all 0.3s ease;
}

.faq-toggle-btn:hover {
    background-color: #62b1d3;
    border-color: #62b1d3;
    transform: scale(1.05);
}

.faq-toggle-btn i {
    font-size: 1.5rem;
}

.offcanvas-end {
    width: 400px;
}

.offcanvas-end.show {
    transform: translateX(0);
}

.offcanvas-body {
    padding: 1.5rem;
}

.accordion-button {
    font-weight: 600;
    color: var(--secondary-color);
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--accent-color);
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    color: var(--text-color);
}

@media (max-width: 575px) {
    .offcanvas-end {
        width: 100%;
    }
}

/* Contact Us Section */
.contact-info-item {
    background-color: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

.contact-info-item .contact-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.contact-info-item p {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-info-item .contact-link {
    color: var(--text-color);
}

/* Contact Form Modal */
.modal-content {
    border-radius: var(--border-radius);
}

.modal-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-bottom: none;
}

.modal-title {
    color: var(--secondary-color);
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(126, 200, 227, 0.25);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: #f8f8f8;
    padding-bottom: 100px; /* To prevent floating FAQ button from overlapping */
}

.footer h5 {
    color: #fff;
    font-weight: 600;
}

.footer-link {
    color: #f8f8f8;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.footer-legal p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-legal ul {
    padding-left: 0;
}

.footer-legal ul li {
    display: inline-block;
}

.footer-legal .small-text {
    font-size: 0.85rem;
}

/* Animations */
.animate-on-load {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-load.delay-1 { animation-delay: 0.2s; }
.animate-on-load.delay-2 { animation-delay: 0.4s; }
.animate-on-load.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline specific animation */
.timeline-line.in-view {
    animation: drawLine 1.5s ease-out forwards;
}

@keyframes drawLine {
    from { height: 0; }
    to { height: 100%; }
}

/* Testimonial bubble random rotation */
.testimonial-bubble {
    transform: rotate(var(--random-rotation, 0deg));
}

/* Hero image animation */
.hero-image.animate-on-load {
    animation: fadeInScale 1s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(1.05) translateY(20px); }
    to { opacity: 1; transform: scale(1); }
}
/*
 * Base styles for the compliance vault node container.
 * Provides padding for internal content.
 */
.complianceVaultNode {
    padding: 1.5rem; /* Top and side padding for the content area */
    /* Optional: Max-width and horizontal centering for better readability on wide screens */
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

/*
 * Heading styles for h1-h5 within the compliance vault node.
 * Font sizes are kept moderate as requested, with appropriate margins.
 */
.complianceVaultNode h1 {
    font-size: 1.8rem; /* Main title, not excessively large */
    line-height: 1.2;
    margin-top: 1.8em; /* Space above the heading */
    margin-bottom: 0.8em; /* Space below the heading */
    font-weight: 700; /* Bold */
}

.complianceVaultNode h2 {
    font-size: 1.5rem; /* Sub-heading */
    line-height: 1.25;
    margin-top: 1.6em;
    margin-bottom: 0.7em;
    font-weight: 600;
}

.complianceVaultNode h3 {
    font-size: 1.25rem; /* Section title */
    line-height: 1.3;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
    font-weight: 600;
}

.complianceVaultNode h4 {
    font-size: 1.1rem; /* Sub-section title */
    line-height: 1.4;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.complianceVaultNode h5 {
    font-size: 1rem; /* Minor heading, often used for small labels */
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 0.4em;
    font-weight: 500;
}

/*
 * Paragraph styles for standard text within the compliance vault node.
 * Focus on readability with good line height and spacing.
 */
.complianceVaultNode p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.6; /* Optimal line height for readability */
    margin-top: 0; /* Reset default top margin */
    margin-bottom: 1em; /* Space between paragraphs */
}

/*
 * Unordered list styles within the compliance vault node.
 * Provides standard bullet points and appropriate indentation.
 */
.complianceVaultNode ul {
    list-style-type: disc; /* Standard bullet points */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 1.5em; /* Indentation for bullet points */
}

/*
 * List item styles for individual items in an unordered list.
 * Ensures proper spacing between list items.
 */
.complianceVaultNode li {
    font-size: 1rem; /* Consistent font size with paragraphs */
    line-height: 1.6; /* Consistent line height */
    margin-bottom: 0.5em; /* Space between list items */
}

/* Remove bottom margin for the last list item for cleaner spacing */
.complianceVaultNode li:last-child {
    margin-bottom: 0;
}


.navbar-toggler-icon {
    width: 1em;
    height: 1em;
}

.offcanvas.show:not(.hiding), .offcanvas.showing {
    height: 100vh;
}


@media (max-width: 992px) {
    .navbar-nav {
        height: fit-content;
        overflow-y: hidden;
    }
}
.footer-links {
    text-align: center;

    .list-unstyled {
        margin-top: 20px;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}
.footer-contact {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .list-unstyled {
        margin-top: 20px;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}