/* Custom CSS */
body {
    font-family: 'Inter', sans-serif;
}

/* Ensure no underline on buttons and specific links */
button,
a.no-underline {
    text-decoration: none !important;
}

/* Modal specific styles */
.modal {
    pointer-events: none;
}

.modal.active {
    pointer-events: auto;
    opacity: 1;
}

.modal.active .modal-content {
    transform: translateY(0);
}

/* Slider specific styles */
#product-slider {
    display: flex;
}

#product-slider > div {
    flex: 0 0 100%; /* Each slide takes full width */
}

#slider-indicators button.current-slide-indicator {
    opacity: 1;
    background-color: #000; /* Black for active indicator */
}

/* Custom scrollbar for cart modal */
#cart-modal .modal-content::-webkit-scrollbar {
    width: 8px;
}

#cart-modal .modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#cart-modal .modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

#cart-modal .modal-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Adjust Material Symbols icon size for better alignment */
.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

/* Specific adjustments for text color on hero section to ensure readability against dark overlay */
#hero h1, #hero p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
/* New styles for .complianceCoreSlot and its child elements */

.complianceCoreSlot {
    /* Padding for the main content slot */
    padding-top: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    /* Optional: Max width for better readability on large screens */
    max-width: 1200px; 
    margin-left: auto;
    margin-right: auto;
}

.complianceCoreSlot h1 {
    /* Heading 1 styles */
    font-size: 2.5rem; /* Approximately 40px */
    line-height: 1.2;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700; /* Bold for main heading */
}

.complianceCoreSlot h2 {
    /* Heading 2 styles */
    font-size: 2rem; /* Approximately 32px */
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.complianceCoreSlot h3 {
    /* Heading 3 styles */
    font-size: 1.75rem; /* Approximately 28px */
    line-height: 1.4;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.complianceCoreSlot h4 {
    /* Heading 4 styles */
    font-size: 1.5rem; /* Approximately 24px */
    line-height: 1.5;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.complianceCoreSlot h5 {
    /* Heading 5 styles */
    font-size: 1.25rem; /* Approximately 20px */
    line-height: 1.6;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.complianceCoreSlot p {
    /* Paragraph styles */
    font-size: 1.125rem; /* Approximately 18px for body text */
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.complianceCoreSlot ul,
.complianceCoreSlot ol {
    /* Unordered and ordered list styles */
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 2rem; /* Indentation for list items */
}

.complianceCoreSlot li {
    /* List item styles */
    font-size: 1.125rem; /* Consistent with paragraph text */
    line-height: 1.7;
    margin-bottom: 0.7rem; /* Spacing between list items */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .complianceCoreSlot {
        padding-top: 3rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .complianceCoreSlot h1 {
        font-size: 2rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .complianceCoreSlot h2 {
        font-size: 1.75rem;
        margin-top: 1.8rem;
        margin-bottom: 0.9rem;
    }

    .complianceCoreSlot h3 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .complianceCoreSlot h4 {
        font-size: 1.25rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .complianceCoreSlot h5 {
        font-size: 1.1rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .complianceCoreSlot p,
    .complianceCoreSlot li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .complianceCoreSlot ul,
    .complianceCoreSlot ol {
        padding-left: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}


footer a img{
    opacity: 1 !important;
    filter: drop-shadow(0px 0px 3px #fff) !important;
    -webkit-filter: drop-shadow(0px 0px 3px #fff) !important;
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
}

header .container,nav{
    flex-wrap: wrap;
}

nav{
    justify-content: center;
}

#hero h1{
font-size:  clamp(27px,5vw,60px) !important;
}