html {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

.adaptive-heading {
    font-size: 2.5rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .adaptive-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .adaptive-heading {
        font-size: 1.8rem;
    }
    #site-title {
        font-size: 1.25rem !important;
    }
}

.hero-theme-default .hero-gradient-overlay {
    background-image: linear-gradient(to right, #3B82F6, #FACC15);
}
.hero-theme-default .hero-cta-button {
    background-color: #FACC15;
    color: #1F2937;
}
.hero-theme-green-purple .hero-gradient-overlay {
    background-image: linear-gradient(to right, #10B981, #A855F7);
}
.hero-theme-green-purple .hero-cta-button {
    background-color: #A855F7;
    color: #FFFFFF;
}
.hero-theme-red-orange .hero-gradient-overlay {
    background-image: linear-gradient(to right, #EF4444, #F97316);
}
.hero-theme-red-orange .hero-cta-button {
    background-color: #F97316;
    color: #FFFFFF;
}

.quote-block::before {
    content: '"';
    font-size: 4rem;
    color: #FF8C00;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    line-height: 1;
    z-index: 0;
}

.quote-block {
    position: relative;
    padding-top: 2rem;
}
/* New stock styles for .userClauseNet container and its children */

.userClauseNet {
    /* Top margin for spacing from preceding content */
    margin-top: 25px;
    /* Padding on sides to prevent content from touching edges */
    padding-left: 20px;
    padding-right: 20px;
    /* Optional: Max width for better readability on large screens, and center the block */
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Headings */
.userClauseNet h1 {
    /* Font size for main heading, kept moderate */
    font-size: 1.8em;
    /* Spacing above and below the heading */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    /* Default font weight is usually bold */
    font-weight: bold;
    /* Line height for readability */
    line-height: 1.2;
}

.userClauseNet h2 {
    /* Font size for secondary heading */
    font-size: 1.5em;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    font-weight: bold;
    line-height: 1.3;
}

.userClauseNet h3 {
    /* Font size for tertiary heading */
    font-size: 1.25em;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    font-weight: bold;
    line-height: 1.4;
}

.userClauseNet h4 {
    /* Font size for quaternary heading */
    font-size: 1.1em;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: bold;
    line-height: 1.5;
}

.userClauseNet h5 {
    /* Font size for quinary heading, slightly smaller than body text */
    font-size: 0.95em;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    font-weight: bold;
    line-height: 1.6;
}

/* Paragraphs */
.userClauseNet p {
    /* Default font size for paragraph text */
    font-size: 1em; /* Assumes a base font size of 16px */
    /* Line height for improved readability */
    line-height: 1.6;
    /* Spacing between paragraphs */
    margin-bottom: 1em;
    /* No top margin as paragraphs typically follow headings or other paragraphs */
    margin-top: 0;
}

/* Unordered Lists */
.userClauseNet ul {
    /* Add some vertical margin for spacing */
    margin-top: 1em;
    margin-bottom: 1em;
    /* Add left padding for bullet points */
    padding-left: 25px;
    /* Default bullet style */
    list-style-type: disc;
}

/* List Items */
.userClauseNet li {
    /* Spacing between list items */
    margin-bottom: 0.5em;
    /* Inherit font size from parent, ensure good line height */
    line-height: 1.5;
}

@media (max-width: 575px){

    .fc{
        flex-direction: column;

        .h-20.w-px.bg-gray-300.mx-4{
            display: none;
        }
    }
}


footer{
    .flex.justify-center.space-x-4.mt-4{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    a.inline-block{
        display: flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }
}