/* Container to keep content centered and distinct */
.california-privacy-policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

/* Typography */
.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #111;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 1rem;
}

.privacy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.privacy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #444;
}

.privacy-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.privacy-content a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* Specific Section Styles */
.last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-section {
    margin-top: 3rem;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

/* Table Styling */
.table-wrapper {
    overflow-x: auto; /* Makes table scrollable on mobile */
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.privacy-content table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensures table doesn't squish too much */
}

.privacy-content th, 
.privacy-content td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.privacy-content th {
    background-color: #f4f4f4;
    font-weight: bold;
    color: #222;
}

.privacy-content tr:nth-child(even) {
    background-color: #fafafa;
}

/* Helper Class */
.text-center {
    text-align: center !important;
}

.privacy-policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 600px) {
    .privacy-policy-container {
        padding: 1rem;
    }
    
    .privacy-content h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content h2 {
        font-size: 1.4rem;
    }
}