:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --light-blue: #e9fbfe;
    --light-purple: #ece9ff;
    --light-pink: #fde9f2;
    --gold-color: #fbbf24;
    --gold-light: #fef3c7;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --white: #fff;
    --light-gray: #f8fafc;
    --medium-gray: #e5e7eb;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, .05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --gradient-light: linear-gradient(135deg, var(--light-blue), var(--light-purple));
    --gradient-gold: linear-gradient(135deg, var(--gold-color), #f59e0b);
    --gradient-faith: linear-gradient(135deg, var(--light-blue), var(--light-purple), var(--light-pink));
    --gradient-cross: linear-gradient(135deg, var(--gold-color), var(--primary-color));
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px
}

.privacy-hero {
    background: var(--gradient-faith);
    overflow: hidden;
    padding: 8rem 0 4rem;
    position: relative
}

@media (max-width: 991px) {
    .privacy-hero {
        padding: 6rem 0 3rem
    }
}

@media (max-width: 767px) {
    .privacy-hero {
        padding: 6rem 0 3rem
    }
}

.privacy-hero:before {
    background-image: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, .08) 0, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 215, 0, .06) 0, transparent 50%);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.privacy-hero .container {
    position: relative;
    z-index: 2
}

.hero-content {
    margin: 0 auto;
    max-width: 800px;
    text-align: center
}

.faith-badge {
    -ms-flex-align: center;
    align-items: center;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: hsla(0, 0%, 100%, .9);
    border: 1px solid rgba(99, 102, 241, .2);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    color: var(--primary-color);
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding: .7rem 1.8rem
}

.faith-badge .fa-cross {
    color: var(--gold-color);
    font-size: .8rem;
    margin-right: .5rem
}

.hero-title {
    color: #000;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem
    }
}

.hero-subtitle {
    color: #000;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem
}

@media (max-width: 767px) {
    .hero-subtitle {
        font-size: 1.1rem
    }
}

.floating-elements {
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

@media (max-width: 767px) {
    .floating-elements {
        display: none
    }
}

.float-element {
    -webkit-animation: subtleFloat 12s ease-in-out infinite;
    animation: subtleFloat 12s ease-in-out infinite;
    color: hsla(0, 0%, 100%, .6);
    font-size: 1.2rem;
    opacity: .4;
    position: absolute
}

.float-element:first-child {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    left: 8%;
    top: 15%
}

.float-element:nth-child(2) {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    right: 12%;
    top: 35%
}

.float-element:nth-child(3) {
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
    left: 15%;
    top: 25%
}

.float-element:nth-child(4) {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    right: 30%;
    top: 45%
}

@-webkit-keyframes subtleFloat {
    0%, to {
        opacity: .4;
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg)
    }
    25% {
        opacity: .6;
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg)
    }
    50% {
        opacity: .8;
        -webkit-transform: translateY(-15px) rotate(90deg);
        transform: translateY(-15px) rotate(90deg)
    }
    75% {
        opacity: .6;
        -webkit-transform: translateY(-8px) rotate(135deg);
        transform: translateY(-8px) rotate(135deg)
    }
}

@keyframes subtleFloat {
    0%, to {
        opacity: .4;
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg)
    }
    25% {
        opacity: .6;
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg)
    }
    50% {
        opacity: .8;
        -webkit-transform: translateY(-15px) rotate(90deg);
        transform: translateY(-15px) rotate(90deg)
    }
    75% {
        opacity: .6;
        -webkit-transform: translateY(-8px) rotate(135deg);
        transform: translateY(-8px) rotate(135deg)
    }
}

.privacy-layout {
    background: var(--white);
    padding: 6rem 0
}

@media (max-width: 991px) {
    .privacy-layout {
        padding: 4rem 0
    }
}

@media (max-width: 767px) {
    .privacy-layout {
        padding: 3rem 0
    }
}

.privacy-container {
    display: grid;
    gap: 3rem;
    grid-template-columns:300px 1fr;
    margin-top: 2rem
}

@media (max-width: 991px) {
    .privacy-container {
        gap: 2rem;
        grid-template-columns:1fr
    }
}

.toc-sidebar {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: -webkit-sticky;
    position: sticky;
    top: 2rem
}

@media (max-width: 991px) {
    .toc-sidebar {
        -ms-flex-order: 2;
        order: 2;
        position: static
    }
}

.toc-card {
    background: var(--white);
    border: 2px solid rgba(99, 102, 241, .1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 2rem;
    position: relative
}

@media (max-width: 991px) {
    .toc-card {
        padding: 1.5rem
    }
}

.toc-card:before {
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, .03), transparent);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left .6s ease;
    width: 100%
}

.toc-card:hover:before {
    left: 100%
}

.toc-title {
    -ms-flex-align: center;
    align-items: center;
    color: var(--text-primary);
    display: -ms-flexbox;
    display: flex;
    font-size: 1.3rem;
    font-weight: 700;
    gap: .5rem;
    margin-bottom: 1.5rem
}

.toc-title i {
    color: var(--gold-color)
}

.toc-list {
    list-style: none
}

@media (max-width: 991px) {
    .toc-list {
        display: grid;
        gap: .5rem;
        grid-template-columns:repeat(auto-fit, minmax(200px, 1fr))
    }
}

@media (max-width: 767px) {
    .toc-list {
        grid-template-columns:1fr
    }
}

.toc-item {
    margin-bottom: .8rem
}

.toc-link {
    border-left: 3px solid transparent;
    color: var(--text-secondary);
    display: block;
    font-size: .9rem;
    padding: .5rem 0 .5rem 1rem;
    text-decoration: none;
    transition: all var(--transition-normal)
}

.toc-link.active, .toc-link:hover {
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600
}

.privacy-content {
    background: var(--white);
    border: 2px solid rgba(99, 102, 241, .1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem
}

@media (max-width: 991px) {
    .privacy-content {
        -ms-flex-order: 1;
        order: 1
    }
}

@media (max-width: 767px) {
    .privacy-content {
        padding: 2rem 1.5rem
    }
}

.content-header {
    border-bottom: 2px solid rgba(99, 102, 241, .1);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    text-align: center
}

.content-title {
    -webkit-text-fill-color: transparent;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem
}

@media (max-width: 767px) {
    .content-title {
        font-size: 2rem
    }
}

.last-updated {
    -ms-flex-align: center;
    align-items: center;
    background: var(--gradient-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: .9rem;
    gap: .5rem;
    padding: 1rem 1.5rem
}

.last-updated i {
    color: var(--primary-color)
}

.privacy-section {
    margin-bottom: 3rem;
    scroll-margin-top: 2rem
}

.section-title {
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 2px solid rgba(99, 102, 241, .1);
    color: var(--text-primary);
    display: -ms-flexbox;
    display: flex;
    font-size: 1.8rem;
    font-weight: 700;
    gap: .5rem;
    margin-bottom: 1rem;
    padding-bottom: .5rem
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.5rem
    }
}

.section-title i {
    color: var(--gold-color);
    font-size: 1.2rem
}

.section-number {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    align-items: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    display: -ms-flexbox;
    display: flex;
    font-size: .9rem;
    font-weight: 600;
    height: 30px;
    justify-content: center;
    margin-right: .5rem;
    width: 30px
}

.section-content {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8
}

.section-content p {
    margin-bottom: 1.5rem
}

.section-content h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0 1rem
}

.section-content ol, .section-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem
}

.section-content li {
    margin-bottom: .8rem
}

.section-content strong {
    color: var(--text-primary);
    font-weight: 600
}

.highlight-box {
    background: var(--gradient-light);
    border: 2px solid rgba(99, 102, 241, .2);
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    padding: 2rem;
    position: relative
}

.highlight-box:before {
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 5px
}

.highlight-title {
    -ms-flex-align: center;
    align-items: center;
    color: var(--primary-color);
    display: -ms-flexbox;
    display: flex;
    font-size: 1.1rem;
    font-weight: 700;
    gap: .5rem;
    margin-bottom: 1rem
}

.highlight-title i {
    color: var(--gold-color)
}

.faith-statement {
    background: var(--white);
    border: 2px solid var(--gold-color);
    border-radius: var(--radius-lg);
    margin: 3rem 0;
    overflow: hidden;
    padding: 2.5rem;
    position: relative;
    text-align: center
}

.faith-statement:before {
    background-image: radial-gradient(circle at 30% 20%, var(--light-purple) 0, transparent 50%), radial-gradient(circle at 70% 80%, var(--light-pink) 0, transparent 50%);
    bottom: 0;
    content: "";
    left: 0;
    opacity: .4;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.faith-content {
    position: relative;
    z-index: 2
}

.faith-icon {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    align-items: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(99, 102, 241, .3);
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    justify-content: center;
    margin: 0 auto 1.5rem;
    width: 60px
}

.faith-icon i {
    color: var(--white);
    font-size: 1.5rem
}

.faith-text {
    color: var(--text-primary);
    font-family: Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem
}

.faith-reference {
    color: var(--primary-color);
    font-size: .9rem;
    font-weight: 600
}

.contact-section {
    background: var(--gradient-light);
    border: 2px solid rgba(99, 102, 241, .1);
    border-radius: var(--radius-lg);
    margin: 3rem 0;
    padding: 2.5rem;
    text-align: center
}

.contact-title {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    align-items: center;
    color: var(--text-primary);
    display: -ms-flexbox;
    display: flex;
    font-size: 1.5rem;
    font-weight: 700;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 1rem
}

.contact-title i {
    color: var(--gold-color)
}

.contact-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem
}

.contact-buttons {
    -ms-flex-pack: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center
}

@media (max-width: 767px) {
    .contact-buttons {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.btn {
    -ms-flex-align: center;
    align-items: center;
    border-radius: var(--radius-md);
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: 600;
    gap: .5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: all var(--transition-normal)
}

@media (max-width: 767px) {
    .btn {
        -ms-flex-pack: center;
        justify-content: center;
        max-width: 300px;
        width: 100%
    }
}

.btn-primary {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(99, 102, 241, .3);
    color: var(--white)
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(99, 102, 241, .4);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px)
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color)
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px)
}

.data-table {
    background: var(--white);
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    overflow: hidden;
    width: 100%
}

@media (max-width: 767px) {
    .data-table {
        font-size: .9rem
    }
}

@media (max-width: 575px) {
    .data-table {
        font-size: .8rem
    }
}

.data-table th {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    padding: 1rem;
    text-align: left
}

@media (max-width: 767px) {
    .data-table th {
        padding: .75rem
    }
}

@media (max-width: 575px) {
    .data-table th {
        padding: .5rem
    }
}

.data-table td {
    border-bottom: 1px solid rgba(99, 102, 241, .1);
    padding: 1rem
}

@media (max-width: 767px) {
    .data-table td {
        padding: .75rem
    }
}

@media (max-width: 575px) {
    .data-table td {
        padding: .5rem
    }
}

.data-table tr:hover {
    background: var(--gradient-light)
}

.fade-in-up {
    -webkit-animation: fadeInUp .6s ease forwards;
    animation: fadeInUp .6s ease forwards;
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px)
}

@-webkit-keyframes fadeInUp {
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.animate-delay-1 {
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

.animate-delay-2 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.animate-delay-3 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.scroll-progress {
    background: var(--gradient-primary);
    height: 4px;
    left: 0;
    position: fixed;
    top: 0;
    transition: width .3s ease;
    width: 0;
    z-index: 1000
}
