/* General Styles */
* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'InterRegular';
    font-style: normal;
    font-weight: normal;
    src: local('InterRegular'), url('../fonts/Inter-Regular.otf') format('woff');
}

@font-face {
    font-family: 'InterMedium';
    font-style: normal;
    font-weight: normal;
    src: local('InterMedium'), url('../fonts/Inter-Medium.otf') format('woff');
}

@font-face {
    font-family: 'InterSemiMedium';
    font-style: normal;
    font-weight: normal;
    src: local('InterSemiMedium'), url('../fonts/Inter-Medium.otf') format('woff');
}

@font-face {
    font-family: 'InterSemiBold';
    font-style: normal;
    font-weight: normal;
    src: local('InterSemiBold'), url('../fonts/Inter-SemiBold.otf') format('woff');
}

@font-face {
    font-family: 'InterLight';
    font-style: normal;
    font-weight: normal;
    src: local('InterLight'), url('../fonts/Inter-Light-BETA.otf') format('woff');
}


body {
    font-family: InterRegular !important;
    background-color: #f2f2f2;
    /* display: flex; */
    flex-direction: row;
    justify-content: center;
    width: 100%;
    background-image: url(../images/ppBG.png);
    background-size: cover;
    background-repeat: round;
}



a {
    color: #000000;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
}

p {
    margin-bottom: 1em;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Header */
.headdiv {
    position: fixed;
    top: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 999;
}

.top_nav {
    width: 86.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    /* height: 37px; */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

    .top_nav .logo {
        font-size: 1.5em;
        font-weight: bold;
        color: #f57c00;
    }

    .top_nav nav ul {
        display: flex;
        gap: 2em;
    }

    .top_nav nav a {
        color: #ffffff;
        font-size: 15px;
    }

.btn_orange {
    background: linear-gradient(70deg, #FEC801, #F15925);
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: InterRegular !important;
}

.ulofheader li a {
    color: #363636;
}

    .ulofheader li a:hover {
        cursor: pointer;
    }

.activehead {
    color: #F36E1E !important;
}
@media (max-width: 991px) {

    nav .ulofheader {
        display: none !important;
    }
}
.privacyPolicyHead {
    margin-top: 120px;
    margin-bottom: 60px;
}

    .privacyPolicyHead h1 {
        margin-top: 44px;
        text-align: center;
    }

.privacyPolicyContent {
    padding: 0px 90px;
}

.privacyPolicyHead p {
    color: #000000;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
    margin-top: 10px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    /* background: #f5f4f2; */
    position: relative;
}
/* left menu */
.privacy-nav {
    min-width: 240px;
    border: 1px solid #bbb;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.06);
    padding: 20px 15px;
    font-size: 14px;
    line-height: 1.6;
    flex-shrink: 0;
    height: fit-content;
    position: sticky;
    top: 110px;
}

    .privacy-nav ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    .privacy-nav li {
        padding: 0.5rem 0.75rem;
        font-size: 15px;
        cursor: pointer;
        border-radius: 3px;
        transition: background-color 0.25s ease;
        user-select: none;
    }

        .privacy-nav li:hover {
            background-color: rgb(255 241 242);
            color: rgb(225 29 72);
        }
/* .privacy-nav li:focus, .privacy-nav li:focus-visible {
      outline: 2px solid #007acc;
      outline-offset: 2px;
      background-color: #d9f0ff;
    } */

/* content area */
article {
    flex-grow: 1;
    margin-left: 35px;
    background: transparent;
}

    article > p:first-child {
        margin-bottom: 24px;
        color: #444;
        font-size: 15px;
    }

h2, h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    color: #111;
}

article > h2 {
    font-size: 22px;
    font-family: InterSemiMedium;
}

article > h3 {
    font-size: 18px;
}

article > p {
    font-size: 15px;
}

ul.info-list {
    padding-left: 20px;
    margin-top: 8px;
    margin-bottom: 24px;
    color: #555;
    list-style-type: disc;
    user-select: text;
}

    ul.info-list li {
        font-size: 15px;
    }

.mb-2 {
    margin-bottom: 8px !important;
}

/* Background pattern shape on right */
.background-pattern {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    height: 100vh;
    pointer-events: none;
    background: repeating-conic-gradient(from 90deg, #f7e5dc 0deg 10deg, transparent 10deg 20deg);
    opacity: 0.35;
    z-index: 0;
}

/* Responsive layout */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        padding: 10px;
        align-items: center;
    }

    .privacy-nav {
        width: 100%;
        max-width: 480px;
        margin-bottom: 30px;
        min-width: auto;
    }

    article {
        margin-left: 0;
        max-width: 90vw;
    }

    .background-pattern {
        display: none;
    }
}

@media (max-width: 420px) {
    .privacy-nav li {
        padding: 10px 5px;
        font-size: 13px;
    }

    article {
        font-size: 14px;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .privacy-nav {
        font-size: 13px;
    }
}



/* Card Container */
.card {
    background-color: #fff;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #939393;
}

/* Left content block */
.info {
    flex: 1 1 320px;
    min-width: 280px;
}

    .info h1 {
        font-weight: 700;
        font-size: 1.4rem;
        color: #222;
        margin: 0 0 1rem 0;
    }

/* Info list style */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #444;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.3;
}

    .info-item:last-child {
        margin-bottom: 0;
    }

/* Icon style */
.icon {
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: #ff5722;
}

/* Text content inside info items - address has multiline */
.info-text {
    display: flex;
    flex-direction: column;
    font-weight: 400;
    color: #555;
    line-height: 1.3;
    font-size: 15px;
}

    .info-text span {
        font-size: 14px;
    }
/* Email link */
.email-link {
    color: #007acc;
    text-decoration: none;
    font-weight: 500;
}

    .email-link:hover,
    .email-link:focus {
        text-decoration: underline;
        outline: none;
    }



/* Responsive adjustments */
@media (max-width: 500px) {
    .card {
        flex-direction: column;
        padding: 1rem 1.25rem;
    }

    .logo-container {
        width: 72px;
        height: 72px;
        margin-top: 1rem;
        align-self: center;
    }

    .info {
        min-width: auto;
    }
}






/* Footer */
footer {
    background-color: #0c0c0c;
    padding: 0px 68px;
    color: #ccc;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    margin-top: 30px;
}

.footerclms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2em;
    padding: 23px 0px;
}

.footltxt {
    font-family: InterLight;
    font-size: 15px;
    line-height: 20px;
}

.linksdiv {
    margin-top: 7px;
}

.linkslbl {
    font-size: 15px;
    font-family: InterMedium;
}

.linksdiv ul {
    text-align: left;
    margin-top: 32px;
    line-height: 25px;
}

    .linksdiv ul li a {
        font-size: 15px;
        font-family: InterLight;
        color: #E3E3E3 !important;
    }

.footimg {
    vertical-align: sub;
}

.contaul {
    line-height: 32px !important;
}

.finalfoot {
    border-top: 1px solid #333;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 23px 68px;
    background-color: #0c0c0c;
}

    .footer_bottom ul {
        margin: 0px;
    }

        .footer_bottom p, .footer_bottom ul li a {
            font-size: 12px;
            font-family: InterLight;
            margin: 0px;
            color: #E3E3E3 !important;
        }

    .footer_bottom ul {
        display: flex;
        gap: 1em;
    }
