body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    background-color: #F0F8FF; /* AliceBlue */
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #4682B4; /* SteelBlue */
}

a {
    color: #4682B4;
    text-decoration: none;
}

a:hover {
    color: #87CEEB; /* SkyBlue */
    text-decoration: underline;
}

.btn-primary {
    background-color: #4682B4; /* SteelBlue */
    border-color: #4682B4;
    color: #fff;
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #36618a; /* Darker SteelBlue */
    border-color: #36618a;
    color: #fff;
    text-decoration: none;
}

.btn-outline-primary {
    color: #4682B4;
    border-color: #4682B4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
    background-color: #4682B4;
    color: #fff;
    text-decoration: none;
}

/* Navbar */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.8rem;
    color: #4682B4;
}

.navbar-brand:hover {
    color: #36618a;
}

.navbar-brand .logo-img {
    height: 40px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: #333333;
    font-weight: 600;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #87CEEB; /* SkyBlue */
}

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
    color: #4682B4;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #F0F8FF, #ADD8E6); /* LightBlue gradient */
    padding-top: 120px; /* Adjust for fixed navbar */
    padding-bottom: 80px;
    min-height: 80vh;
}

.hero-content h1 {
    color: #4682B4;
    font-size: 3.5rem;
}

.hero-content p {
    color: #555555;
    font-size: 1.25rem;
}

.hero-image-container {
    padding: 20px;
}

.hero-img {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-image-container {
        order: -1; /* Image above text on mobile */
        margin-bottom: 30px;
    }
    .hero-img {
        max-width: 100%;
    }
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 80px 0;
}

.about-feature {
    background-color: #F0F8FF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-feature .feature-icon {
    font-size: 3rem;
    color: #87CEEB; /* SkyBlue */
    margin-bottom: 10px;
}

.about-feature h5 {
    color: #4682B4;
    font-weight: 600;
}

/* Services Section */
.services-section {
    background-color: #F0F8FF;
    padding: 80px 0;
}

.service-item {
    background-color: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure equal height */
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-item .service-icon {
    font-size: 4rem;
    color: #4682B4; /* SteelBlue */
}

.service-item .card-title {
    color: #4682B4;
}

/* Pricing Section */
.pricing-section {
    background-color: #fff;
    padding: 80px 0;
}

.pricing-section .nav-tabs {
    border-bottom: 2px solid #ADD8E6; /* LightBlue */
}

.pricing-section .nav-link {
    color: #4682B4;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.pricing-section .nav-link.active {
    color: #4682B4;
    background-color: transparent;
    border-color: #4682B4;
}

.pricing-section .nav-link:hover {
    border-color: #87CEEB; /* SkyBlue */
}

.pricing-card {
    border: 1px solid #ADD8E6; /* LightBlue */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
}

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

.pricing-card .card-header {
    background-color: #F0F8FF;
    border-bottom: 1px solid #ADD8E6;
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #4682B4;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.pricing-card .card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-card .card-title {
    color: #4682B4;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: auto; /* Push footer to bottom */
}

.pricing-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #555555;
}

.pricing-card ul li .icon-check {
    color: #28a745; /* Green for check */
    font-size: 1.2rem;
}

.pricing-card ul li .icon-cross {
    color: #dc3545; /* Red for cross */
    font-size: 1.2rem;
}

.pricing-card .card-footer {
    background-color: #F0F8FF;
    border-top: 1px solid #ADD8E6;
    padding: 1.5rem;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.featured-plan {
    border: 2px solid #4682B4; /* Highlight featured plan */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.featured-plan .card-header {
    background-color: #4682B4;
    color: #fff;
    border-color: #4682B4;
}

/* Booking Section */
.booking-section {
    background-color: #F0F8FF;
    padding: 80px 0;
}

.booking-card {
    background-color: #fff;
    border: 1px solid #ADD8E6;
}

.booking-card label {
    font-weight: 600;
    color: #4682B4;
}

.booking-card .form-control,
.booking-card .form-select {
    border-color: #ADD8E6;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
    border-color: #87CEEB;
    box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.25);
}

.booking-card .invalid-feedback {
    color: #dc3545;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
    padding: 80px 0;
}

.accordion-item {
    border: 1px solid #ADD8E6;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header .accordion-button {
    background-color: #F0F8FF;
    color: #4682B4;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion-header .accordion-button:not(.collapsed) {
    background-color: #ADD8E6;
    color: #333333;
    box-shadow: none;
}

.accordion-header .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.25);
}

.accordion-header .accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-header .accordion-button:not(.collapsed) .accordion-icon {
    transform: rotate(45deg); /* Simple visual indicator */
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
    color: #555555;
    border-top: 1px solid #ADD8E6;
}

/* Industries Section */
.industries-section {
    background-color: #F0F8FF;
    padding: 80px 0;
}

.industry-filters .btn {
    margin: 0 5px;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.industry-block {
    transition: all 0.4s ease; /* For filtering */
}

.industry-block.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

.industry-block .card {
    background-color: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure equal height */
}

.industry-block .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.industry-block .industry-icon {
    font-size: 4rem;
    color: #87CEEB; /* SkyBlue */
}

.industry-block .card-title {
    color: #4682B4;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
    padding: 80px 0;
}

.contact-info {
    background-color: #F0F8FF;
    border: 1px solid #ADD8E6;
}

.contact-info h3 {
    color: #4682B4;
}

.contact-info .contact-icon {
    font-size: 1.5rem;
    color: #87CEEB;
    vertical-align: middle;
}

.contact-info .contact-link {
    color: #333333;
    font-weight: 500;
    text-decoration: none;
}

.contact-info .contact-link:hover {
    color: #4682B4;
    text-decoration: underline;
}

/* Footer */
.footer-section {
    background-color: #4682B4; /* SteelBlue */
    color: #fff;
    padding: 60px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
}

.footer-brand:hover {
    color: #ADD8E6;
}

.footer-brand .logo-img {
    height: 40px;
    margin-right: 10px;
}

.footer-section p {
    font-size: 0.9rem;
    color: #ADD8E6;
}

.footer-section h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links li a {
    color: #ADD8E6;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
    display: block;
}

.footer-links li a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    background-color: #4682B4; /* SteelBlue */
    color: #fff;
    padding: 15px 0;
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.cookie-banner .cookie-policy-link {
    color: #87CEEB; /* SkyBlue */
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner .cookie-policy-link:hover {
    color: #fff;
}

.cookie-banner .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    text-decoration: none;
}

.cookie-banner .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.cookie-banner .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    text-decoration: none;
}

.cookie-banner .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

@media (max-width: 767.98px) {
    .cookie-banner .container {
        flex-direction: column;
    }
    .cookie-banner p {
        margin-bottom: 15px !important;
    }
    .cookie-banner .d-flex {
        width: 100%;
    }
    .cookie-banner .btn {
        width: 100%;
    }
    .cookie-banner .btn-sm.me-0.me-sm-2.mb-2.mb-sm-0 {
        margin-right: 0 !important;
    }
}/*
 * New stock styles for complianceVaultNode content.
 * These styles provide basic typography and spacing,
 * ensuring headings are not excessively large.
 */

.complianceVaultNode {
    /* Base styling for the compliance vault node container */
    padding: 20px 25px; /* Top/bottom 20px, left/right 25px padding */
    /* You might want to add a background-color, border, or max-width here if needed */
}

.complianceVaultNode h1 {
    /* Heading 1 styles: Reduced font size for a less overwhelming look */
    font-size: 1.6em;
    margin-top: 2em;
    margin-bottom: 0.8em;
    line-height: 1.2;
    font-weight: bold;
}

.complianceVaultNode h2 {
    /* Heading 2 styles */
    font-size: 1.4em;
    margin-top: 1.8em;
    margin-bottom: 0.7em;
    line-height: 1.3;
    font-weight: bold;
}

.complianceVaultNode h3 {
    /* Heading 3 styles */
    font-size: 1.2em;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    line-height: 1.4;
    font-weight: bold;
}

.complianceVaultNode h4 {
    /* Heading 4 styles */
    font-size: 1.1em;
    margin-top: 1.4em;
    margin-bottom: 0.5em;
    line-height: 1.5;
    font-weight: bold;
}

.complianceVaultNode h5 {
    /* Heading 5 styles: Close to body text size, but still bold */
    font-size: 1em;
    margin-top: 1.2em;
    margin-bottom: 0.4em;
    line-height: 1.6;
    font-weight: bold;
}

.complianceVaultNode p {
    /* Paragraph styles */
    font-size: 1em; /* Standard body font size */
    line-height: 1.6; /* Improved readability for body text */
    margin-top: 0; /* Reset default browser margin-top */
    margin-bottom: 1em; /* Space between paragraphs */
}

.complianceVaultNode ul {
    /* Unordered list styles */
    list-style-type: disc; /* Default bullet style */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 20px; /* Indentation for bullets */
}

.complianceVaultNode li {
    /* List item styles */
    margin-bottom: 0.5em; /* Space between individual list items */
    line-height: 1.6; /* Consistent line height for readability */
}
.navbar-brand {
    white-space: unset;
}
@media screen and (width < 576px) {
    .btn-group {
    flex-direction: column;
}
.btn-group>.btn {
    border-radius: 0;
    margin: 0;
}
.navbar {
    position: relative !important;

}
.navbar-brand {
    font-size: 1.3rem;
}
}
@media screen and (575px < width < 768px) {
    .navbar-brand {
    font-size: 1.5rem;
}
}
