/* Privacy page styling */
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    margin-bottom: 100px; /* space for footer */
}

.privacy-page h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2.5em;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.privacy-page h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1C6E99;
    border-radius: 3px;
}

.privacy-page h2 {
    color: #1C6E99;
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.privacy-page h3 {
    color: #333;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-page p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.privacy-page ul, 
.privacy-page ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.privacy-page li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #444;
}

.privacy-page b, 
.privacy-page strong {
    color: #333;
    font-weight: 600;
}

.privacy-page .effective-date {
    color: #1C6E99;
    margin-bottom: 25px;
    text-align: center;
}

.privacy-page .intro {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #444;
}

.privacy-page a {
    color: #1C6E99;
    text-decoration: none;
    transition: color 0.2s;
}

.privacy-page a:hover {
    color: #165779;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-container {
        padding: 30px 15px;
        margin-top: 20px;
    }
    
    .privacy-page h1 {
        font-size: 2em;
    }
    
    .privacy-page h2 {
        font-size: 1.4em;
    }
    
    .privacy-page h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 25px 12px;
    }
    
    .privacy-page h1 {
        font-size: 1.8em;
    }
    
    .privacy-page h2 {
        font-size: 1.3em;
    }
    
    .privacy-page ul, 
    .privacy-page ol {
        padding-left: 20px;
    }
}
