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

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
    .platform-card {
        flex-direction: row;
    }
}

.platform-card .flex-grow {
    flex-grow: 1;
}

.platform-card .text-center {
    text-align: center;
}

.platform-card .md\:text-left {
    text-align: left;
}

.platform-card .mb-4 {
    margin-bottom: 1rem;
}

.platform-card .md\:mb-0 {
    margin-bottom: 0;
}

.platform-card .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 1.5rem;
}

.platform-card .md\:justify-start {
    justify-content: flex-start;
}

.platform-card .md\:justify-end {
    justify-content: flex-end;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0s ease-out;
}

.faq-answer.active {
    max-height: 500px; 
    transition: max-height 0s ease-in;
}

.faq-icon {
    transition: transform 0s ease-in-out;
}

.faq-icon.rotate {
    transform: rotate(180deg);
}

button {
    text-decoration: none !important;
}

.form-checkbox {
    appearance: none;
    display: inline-block;
    vertical-align: middle;
    height: 1.25rem;
    width: 1.25rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.25rem;
    background-color: #fff;
    cursor: pointer;
}

.form-checkbox:checked {
    background-color: #3B82F6;
    border-color: #3B82F6;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 00-1.414 0L7 8.586 4.207 5.793a1 1 0 00-1.414 1.414l3.5 3.5a1 1 0 001.414 0l4.5-4.5a1 1 0 000-1.414z'/%3e%3c/svg%3e");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.form-checkbox:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #E5E7EB;
}

.form-checkbox:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}
/* Styles for the parent container, adding top and side padding */
.complianceVaultNode {
    padding-top: 20px;    /* Top padding for the content area */
    padding-left: 20px;   /* Left padding for the content area */
    padding-right: 20px;  /* Right padding for the content area */
    padding-bottom: 20px; /* Bottom padding for the content area */
}

/* Heading 1 styles within .complianceVaultNode */
.complianceVaultNode h1 {
    font-size: 2.2rem;     /* Font size for H1, not excessively large */
    line-height: 1.2;      /* Line height for better readability */
    margin-top: 1.5em;     /* Top margin for H1 */
    margin-bottom: 0.8em;  /* Bottom margin for H1 */
    font-weight: bold;     /* Ensure H1 is bold */
}

/* Heading 2 styles within .complianceVaultNode */
.complianceVaultNode h2 {
    font-size: 1.8rem;     /* Font size for H2 */
    line-height: 1.3;      /* Line height for H2 */
    margin-top: 1.2em;     /* Top margin for H2 */
    margin-bottom: 0.7em;  /* Bottom margin for H2 */
    font-weight: bold;     /* Ensure H2 is bold */
}

/* Heading 3 styles within .complianceVaultNode */
.complianceVaultNode h3 {
    font-size: 1.5rem;     /* Font size for H3 */
    line-height: 1.4;      /* Line height for H3 */
    margin-top: 1em;       /* Top margin for H3 */
    margin-bottom: 0.6em;  /* Bottom margin for H3 */
    font-weight: bold;     /* Ensure H3 is bold */
}

/* Heading 4 styles within .complianceVaultNode */
.complianceVaultNode h4 {
    font-size: 1.25rem;    /* Font size for H4 */
    line-height: 1.5;      /* Line height for H4 */
    margin-top: 0.8em;     /* Top margin for H4 */
    margin-bottom: 0.5em;  /* Bottom margin for H4 */
    font-weight: bold;     /* Ensure H4 is bold */
}

/* Heading 5 styles within .complianceVaultNode */
.complianceVaultNode h5 {
    font-size: 1.1rem;     /* Font size for H5, slightly larger than paragraph */
    line-height: 1.6;      /* Line height for H5 */
    margin-top: 0.7em;     /* Top margin for H5 */
    margin-bottom: 0.4em;  /* Bottom margin for H5 */
    font-weight: bold;     /* Ensure H5 is bold */
}

/* Paragraph styles within .complianceVaultNode */
.complianceVaultNode p {
    font-size: 1rem;       /* Base font size for paragraphs */
    line-height: 1.6;      /* Line height for better readability of paragraphs */
    margin-top: 1em;       /* Top margin for paragraphs */
    margin-bottom: 1em;    /* Bottom margin for paragraphs */
}

/* Unordered list styles within .complianceVaultNode */
.complianceVaultNode ul {
    margin-top: 1em;       /* Top margin for unordered lists */
    margin-bottom: 1em;    /* Bottom margin for unordered lists */
    padding-left: 2em;     /* Indentation for list items with bullet points */
    list-style: disc;      /* Default bullet style */
}

/* List item styles within .complianceVaultNode */
.complianceVaultNode li {
    margin-bottom: 0.5em;  /* Space between list items */
    line-height: 1.6;      /* Line height for list items */
}
