/* Reset and general styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #fff;
}

/* Container styles */
.header {
    padding: 1rem 0;
    width: 100%;
    margin: 0 auto;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    /* border-radius: 10px;
    border: 1px solid #E9E9E9;
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.04);
    padding: 20px 40px; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Header styles */
.logo {
    display: flex;
    text-align: center;
    margin: 0 auto;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.logo span {
    font-size: 20px !important;
    line-height: 24px !important;
    color: #1f2937;

}

.content-img {
    max-width: 100%;
}

/* Main content styles */
h1 {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 38.4px */
    letter-spacing: -0.64px;
    padding-bottom: 20px;
}

/*===============content styling start========================*/
h2 {
    font-size: 18px;
    font-weight: bold;
    color: #3e3e3e;
    margin: 15px 0px;
}

p,
.disc-style li {
    font-size: 16px;
    line-height: 1.63;
    color: #3e3e3e;
    margin-bottom: 15px;
}

.disc-style {
    padding-left: 20px;
    list-style: disc;
}

.disc-style li:before {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    top: 9px;
    left: -20px;
    background-color: #3e3e3e;
    border-radius: 50%;
}

.number-style,
.roman-style,
.small-alpha {
    padding-left: 20px;
}

.number-style li,
.roman-style li,
.small-alpha li {
    list-style: decimal;
    font-size: 16px;
    line-height: 1.63;
    color: #3e3e3e;
    position: relative;
    margin-bottom: 15px;
}

.number-style-imp li {
    list-style: decimal !important;
}

.roman-style li {
    list-style: lower-roman;
}

.small-alpha li {
    list-style: lower-alpha;
}

p a {
    color: #0f5aae;
    word-wrap: break-word;
}

.table-block {
    margin: 15px 0;
    border-collapse: collapse;
}

.table-block,
.table-block th,
.table-block td {
    border: 1px solid black;
    font-size: 16px;
    line-height: 1.63;
    color: #3e3e3e;
}

.table-block th,
.table-block td {
    padding: 10px;
}

.tab-links {
    position: absolute;
    bottom: 0px;
}

.tab-links li {
    display: inline-block;
    vertical-align: bottom;
}

.tab-links li:last-child {
    margin-left: -5px;
}

.tab-links li a {
    padding: 10px 40px;
    color: #0063b1;
    background: #fff;
    border-radius: 10px 10px 0px 0px;
    font-weight: bold;
    font-size: 20px;
    display: block;
}

.tab-links li.active a {
    background: linear-gradient(to right, #f434a1 0%, #ff8442 100%);
    font-size: 24px;
    color: #fff;
    padding: 15px 30px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.4);
}

/*===============content styling end========================*/

/* Footer styles */
.footer {
    /* background: #EDF5FF; */
    padding: 16px 0;
    text-align: center;
    border-radius: 50px 50px 0px 0px;
    margin-top: 20px;
}

.footer a {
    text-decoration: none;
    margin: 0 16px;
    color: #2E2E2E;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 136%;
    /* 19.04px */
}

.footer a:hover {
    color: #FF6B00;
}

.unintallf {
    bottom: 0;
    width: 100%;
}

.entity-addr {
    width: 375px;
}

ul {
    margin: 16px 0;
    padding-left: 24px;
}

li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
}

@media (max-width: 1200px) {
    .container {
        margin: 0 20px;
    }
}

@media (max-height: 615px) {
    .unintallf {
        position: relative;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 20px 10px;
    }

    h1 {
        font-size: 27px;
    }

    .footer a {
        display: block;
        margin-bottom: 10px;
    }

    .footer a:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 391px) and (max-height: 750px) {
    .unintallf {
        position: relative;
    }
}

@media (max-width: 440px) {
    .entity-addr {
        width: 100%;
    }
}