/* Privacy Policy Styles */
#privacy-html {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.rounded-3 {
    border-radius: 0.5rem !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-md-4 {
    margin-bottom: 1.5rem !important;
}

.mb-lg-5 {
    margin-bottom: 3rem !important;
}

.text-center {
    text-align: center !important;
}

.text-start {
    text-align: left !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.top-0 {
    top: 0 !important;
}

.start-0 {
    left: 0 !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.zindex-3 {
    z-index: 3 !important;
}

.bg-faded-light {
    background-color: rgba(248, 249, 250, 0.5);
}

.title_ps {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.fs-xl {
    font-size: 1.25rem !important;
}

.fs-ms {
    font-size: 1rem !important;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
}

.btn-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-scroll-top:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
    color: white;
    text-decoration: none;
}

.btn-scroll-top-tooltip {
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

.btn-scroll-top-icon {
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title_ps {
        font-size: 2rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    h5 {
        font-size: 1.125rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .btn-scroll-top {
        bottom: 1rem;
        right: 1rem;
        padding: 0.5rem 0.75rem;
    }
    
    .btn-scroll-top-tooltip {
        display: none;
    }
}

@media (max-width: 576px) {
    .title_ps {
        font-size: 1.75rem;
    }
    
    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-11,
.col-md-10,
.col-lg-8 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

@media (min-width: 768px) {
    .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
}

@media (min-width: 992px) {
    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

.justify-content-center {
    justify-content: center !important;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Footer spacing */
#footer-container {
    margin-top: auto;
}