/* Privacy Policy and Terms Pages Styling */

.landing_PT {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(29, 78, 216, 0.9)), url("../assets/landing.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 50vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.landing_PT .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.landing_PT .content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.contentPage {
    padding: var(--section-padding) 0;
    background: var(--background-white);
}

.contentPage .container {
    max-width: 800px;
}

.contentPage .title {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--main-duration) cubic-bezier(0.4, 0, 0.2, 1);
}

.contentPage .title:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contentPage .title h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 16px;
}

.contentPage .title h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--main-color), var(--main-color-dark));
    border-radius: 2px;
}

.contentPage .title p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.contentPage .title p:last-child {
    margin-bottom: 0;
}

.contentPage .title a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--main-duration) ease;
    position: relative;
}

.contentPage .title a:hover {
    color: var(--main-color-dark);
}

.contentPage .title a span {
    position: relative;
}

.contentPage .title a span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--main-color), var(--main-color-dark));
    transition: width var(--main-duration) ease;
}

.contentPage .title a:hover span::after {
    width: 100%;
}

/* Responsive Design for Privacy Pages */
@media (max-width: 768px) {
    .landing_PT {
        height: 40vh;
    }
    
    .contentPage .title {
        padding: 24px;
        margin-bottom: 40px;
    }
    
    .contentPage .title h1 {
        font-size: 1.5rem;
    }
    
    .contentPage .title p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .landing_PT {
        height: 35vh;
    }
    
    .contentPage .title {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .contentPage .title h1 {
        font-size: 1.25rem;
    }
    
    .contentPage .title p {
        font-size: 0.9rem;
    }
}

/* Start Content Page */
.contentPage p {
    font-size: 15px;
    color: var(--secondary-color);
    line-height: 1.6;
    position: relative;
    margin: 5px;

}
.contentPage a {
    color: var(--secondary-color);
    font-weight: 500;
}

.contentPage ul {
    margin: 0px;

}

.contentPage ul li {
    font-size: 14px;
    color: var(--secondary-color);
    line-height: 1.6;
    position: relative;
    margin: 5px 0px;
}