/* Global Styles */
* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Responsive Typography for Site Title */
.site-title {
    font-size: 1.8rem; /* Desktop */
}

@media (max-width: 1023px) {
    .site-title {
        font-size: 1.6rem; /* Tablet */
    }
}

@media (max-width: 767px) {
    .site-title {
        font-size: 1rem; /* Mobile */
    }
}

/* Responsive Typography for Headings */
h1 {
    font-size: 3.5rem; /* Default Desktop */
}

h2 {
    font-size: 2.8rem; /* Default Desktop */
}

h3 {
    font-size: 2.2rem; /* Default Desktop */
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4.5rem; /* Desktop */
    }
    h2 {
        font-size: 3.5rem; /* Desktop */
    }
    h3 {
        font-size: 2.2rem; /* Desktop */
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    h1 {
        font-size: 3.8rem; /* Tablet */
    }
    h2 {
        font-size: 3rem; /* Tablet */
    }
    h3 {
        font-size: 1.9rem; /* Tablet */
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.2rem; /* Mobile */
    }
    h2 {
        font-size: 1.9rem; /* Mobile */
    }
    h3 {
        font-size: 1.4rem; /* Mobile */
    }
}

/* Custom styles for hero section background cards */
#hero .absolute.inset-0 img:nth-child(1) {
    left: 10%;
    top: 20%;
    transform: rotate(10deg) translateX(-150px);
}

#hero .absolute.inset-0 img:nth-child(2) {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
}

#hero .absolute.inset-0 img:nth-child(3) {
    right: 10%;
    bottom: 20%;
    transform: rotate(20deg) translateX(150px);
}

/* FAQ active state */
.faq-question[aria-expanded="true"] .bx-chevron-down {
    transform: rotate(180deg);
}

/* Utility to prevent scroll */
.no-scroll {
    overflow: hidden;
    height: 100vh;
}
/* Parent container padding */
.dataTrustFrame {
    padding: 30px 20px; /* Top/bottom 30px, left/right 20px */
}

/* Heading 1 styles */
.dataTrustFrame h1 {
    font-size: 1.6em; /* Approximately 25.6px with a base font-size of 16px */
    line-height: 1.2;
    font-weight: bold;
    margin: 1.6em 0 0.8em 0; /* Top, Right, Bottom, Left */
    color: inherit; /* Inherit text color from parent */
}

/* Heading 2 styles */
.dataTrustFrame h2 {
    font-size: 1.4em; /* Approximately 22.4px */
    line-height: 1.3;
    font-weight: bold;
    margin: 1.4em 0 0.7em 0;
    color: inherit;
}

/* Heading 3 styles */
.dataTrustFrame h3 {
    font-size: 1.2em; /* Approximately 19.2px */
    line-height: 1.4;
    font-weight: bold;
    margin: 1.2em 0 0.6em 0;
    color: inherit;
}

/* Heading 4 styles */
.dataTrustFrame h4 {
    font-size: 1.1em; /* Approximately 17.6px */
    line-height: 1.5;
    font-weight: bold;
    margin: 1.1em 0 0.5em 0;
    color: inherit;
}

/* Heading 5 styles */
.dataTrustFrame h5 {
    font-size: 1em; /* Approximately 16px (same as base text) */
    line-height: 1.6;
    font-weight: bold;
    margin: 1em 0 0.4em 0;
    color: inherit;
}

/* Paragraph basic styles */
.dataTrustFrame p {
    font-size: 1em; /* Standard text size */
    line-height: 1.6;
    margin-bottom: 1.5em; /* Space after paragraph */
    color: inherit;
}

/* Unordered list basic styles */
.dataTrustFrame ul {
    margin: 1em 0 1.5em 0; /* Top, Right, Bottom, Left */
    padding-left: 25px; /* Indent for bullet points */
    list-style-type: disc; /* Default bullet style */
    color: inherit;
}

/* List item basic styles */
.dataTrustFrame li {
    line-height: 1.6;
    margin-bottom: 0.5em; /* Space between list items */
    color: inherit;
}

/* Remove bottom margin for the last list item in a list */
.dataTrustFrame li:last-child {
    margin-bottom: 0;
}
#cookieConsentModal {
    display: flex;
}
#cookieConsentModal.hidden {
    display: none;
}