body {
    font-family: 'Poppins', sans-serif;
}

.responsive-heading-h1 {
    font-size: 2.5rem; /* Mobile */
}

@media (min-width: 768px) {
    .responsive-heading-h1 {
        font-size: 3.5rem; /* Tablet */
    }
}

@media (min-width: 1024px) {
    .responsive-heading-h1 {
        font-size: 4.5rem; /* Desktop */
    }
}

.responsive-heading-h2 {
    font-size: 1.8rem; /* Mobile */
}

@media (min-width: 768px) {
    .responsive-heading-h2 {
        font-size: 2.2rem; /* Tablet */
    }
}

@media (min-width: 1024px) {
    .responsive-heading-h2 {
        font-size: 2.5rem; /* Desktop */
    }
}

.site-title-responsive {
    font-size: 1.25rem; /* Mobile */
}

@media (min-width: 768px) {
    .site-title-responsive {
        font-size: 1.5rem; /* Tablet */
    }
}

@media (min-width: 1024px) {
    .site-title-responsive {
        font-size: 2rem; /* Desktop */
    }
}

/* Custom scrollbar hide for horizontal sections */
.scrollbar-hide-custom::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide-custom {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Services Tabs */
.tab-button.active-tab {
    background-color: #059669; /* emerald-600 */
    color: white;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2);
}

/* Pricing Cards Equal Height */
.pricing-card-equal-height {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto; /* Will be set by JS */
}

/* Team Card Expandable Bio */
.bio-full {
    transition: max-height 0.5s ease-out;
    max-height: 0;
    overflow: hidden;
}

.bio-full.expanded {
    max-height: 200px; /* Adjust as needed */
    transition: max-height 0.5s ease-in;
}

/* Accordion Icon Rotation */
.accordion-item summary svg {
    transition: transform 0.3s ease;
}

.accordion-item[open] summary svg {
    transform: rotate(180deg);
}

/* How It Works Arrows */
.arrow-right {
    position: relative;
    width: 20px; /* Adjust arrow size */
    height: 1px;
    background-color: #4b5563; /* gray-700 */
    margin: 0 10px;
}

.arrow-right::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #4b5563; /* gray-700 */
}

@media (max-width: 767px) {
    .arrow-right {
        display: none; /* Hide arrows on mobile */
    }
}

/* Footer Tile Hover Effect */
.footer-tile {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}/*
 * Base styles for the compliance core slot container.
 * Provides vertical and horizontal spacing for its content.
 */
.complianceCoreSlot {
    margin-top: 2.5rem; /* Top margin to separate from content above */
    padding-left: 1.5rem; /* Internal padding on the left */
    padding-right: 1.5rem; /* Internal padding on the right */
    line-height: 1.6; /* Default line height for text within the slot */
    font-size: 1rem; /* Base font size for general text */
}

/*
 * Heading styles for h1 within .complianceCoreSlot.
 * Moderate font size, clear vertical spacing.
 */
.complianceCoreSlot h1 {
    font-size: 2rem; /* Not excessively large, but clearly a main heading */
    font-weight: 700; /* Bold */
    line-height: 1.2;
    margin-top: 2rem; /* Space above the heading */
    margin-bottom: 1rem; /* Space below the heading */
}

/*
 * Heading styles for h2 within .complianceCoreSlot.
 * Slightly smaller than h1, good for sub-sections.
 */
.complianceCoreSlot h2 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

/*
 * Heading styles for h3 within .complianceCoreSlot.
 * Further reduction in size, for minor sub-sections.
 */
.complianceCoreSlot h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
}

/*
 * Heading styles for h4 within .complianceCoreSlot.
 * Close to body text size, but distinct with weight and spacing.
 */
.complianceCoreSlot h4 {
    font-size: 1.15rem;
    font-weight: 500; /* Slightly less bold */
    line-height: 1.5;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
}

/*
 * Heading styles for h5 within .complianceCoreSlot.
 * Similar to body text size, primarily distinguished by weight and spacing.
 */
.complianceCoreSlot h5 {
    font-size: 1rem; /* Same as base text, but still a heading */
    font-weight: 500;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/*
 * Paragraph styles within .complianceCoreSlot.
 * Ensures consistent spacing between paragraphs.
 */
.complianceCoreSlot p {
    font-size: 1rem; /* Ensures consistency with base font size */
    line-height: 1.6; /* Good readability */
    margin-top: 0; /* Reset default browser margin-top */
    margin-bottom: 1rem; /* Space below each paragraph */
}

/*
 * Unordered list styles within .complianceCoreSlot.
 * Provides standard bullet points and indentation.
 */
.complianceCoreSlot ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
}

/*
 * List item styles within .complianceCoreSlot.
 * Adds spacing between individual list items.
 */
.complianceCoreSlot li {
    font-size: 1rem; /* Ensures consistency with base font size */
    line-height: 1.6;
    margin-bottom: 0.5rem; /* Space between list items */
}
main {
    overflow: hidden;
}