/* Global Styles */
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background-color: #0a0a0a;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Typography Responsiveness */
@media (min-width: 1024px) {
    h1 { font-size: 5rem; }
    h2 { font-size: 3.5rem; }
}

@media (max-width: 1023px) and (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
}

@media (max-width: 767px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: #e11d48 !important;
    opacity: 1;
}

/* Modal Scroll */
#modal-overlay {
    backdrop-filter: blur(10px);
}

/* FAQ Accordion */
.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-item.active .ri-arrow-down-s-line {
    transform: rotate(180deg);
}

/* Product Card Hover */
.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* Button Reset */
button:focus {
    outline: none;
}

/* Mobile Menu */
#mobile-menu.translate-x-0 {
    transform: translateX(0);
}

/* Utility Classes */
.text-red-600 {
    color: #e11d48;
}

.bg-red-600 {
    background-color: #e11d48;
}

.border-red-600 {
    border-color: #e11d48;
}/* Main container spacing */
.secureTermsHub {
    padding: 30px 20px 0 20px;
    box-sizing: border-box;
}

/* Typography - Headings with moderate sizes */
.secureTermsHub h1 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.secureTermsHub h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 600;
    color: #ffffff;
}

.secureTermsHub h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff;
}

.secureTermsHub h4 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff;
}

.secureTermsHub h5 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff;
}

/* Paragraph styles */
.secureTermsHub p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ffffff;
}

/* List styles */
.secureTermsHub ul {
    margin-bottom: 15px;
    padding-left: 25px;
    list-style-type: disc;
}

.secureTermsHub li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #ffffff;
}

/* Remove margin from the last element to prevent double spacing */
.secureTermsHub > *:last-child {
    margin-bottom: 0;
}
 
.swiper-wrapper {
    padding-bottom: 40px;
}
#mobile-menu {
    padding: 15px 0;
    height: fit-content;
    background-color: #0a0a0a;
}
#mobile-menu a {
    font-size: 17px !important;
}
#annexForm p {
    word-break: break-all;
}
@media (max-width: 767px) {

    .deliveryCostTable {
        width: 100%;color: #fff;
        border-collapse: collapse;
    }

    .deliveryCostTable thead {
        display: none;
    }

    .deliveryCostTable,
    .deliveryCostTable tbody,
    .deliveryCostTable .tableRow,
    .deliveryCostTable .tableData {
        display: block;
        width: 100%;
    }

    .deliveryCostTable .tableRow {
        margin-bottom: 20px;
        padding: 15px; 
        border-radius: 8px;
        background: #000000;
        color: #fff;
    }

    .deliveryCostTable .tableData {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        font-size: 14px;
    }

    .deliveryCostTable .tableData:last-child {
        border-bottom: none;
    }

    .deliveryCostTable .tableData::before {
        content: attr(data-label);
        font-weight: 600;
        padding-right: 10px;
        text-align: left;
        color: #fff;
        flex: 1;
    }

    .deliveryCostTable .tableData span {
        flex: 1;
        text-align: right;
    }
}