body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #ffffff;
    color: #333;
    line-height: 1.8;
    margin: 0;
    padding: 20px;
}

.privacy-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

header {
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

header h1 {
    font-size: 48px;
    color: #003366; /* Darker Blue for contrast */
    margin: 0;
}

.header-icon {
    color: #A7C7E7; /* Light Blue */
    margin-right: 15px;
}


header p {
    font-size: 20px;
    color: #555;
}

.last-updated {
    font-size: 16px;
    color: #777;
    margin-top: 10px;
}

.policy-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    font-size: 18px;
}

.icon-container {
    flex-shrink: 0;
    margin-right: 30px;
    font-size: 40px;
    color: #77DD77; /* Light Green */
}

.text-container h2 {
    font-size: 32px;
    color: #005A9C; /* Branding Blue */
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 2px solid #A7C7E7; /* Light Blue */
    padding-bottom: 5px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

strong {
    color: #003366; /* Darker Blue for emphasis */
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

footer h2 {
    font-size: 28px;
    color: #005A9C; /* Branding Blue */
}

footer a {
    color: #77DD77; /* Light Green */
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .policy-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .icon-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
    header h1 {
        font-size: 36px;
    }
    .text-container h2 {
        font-size: 28px;
    }
}
