* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: #2c3e50;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: #ecf0f1;
    font-size: 28px;
    font-weight: 600;
}

header nav a {
    color: #ecf0f1;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 400;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #3498db;
}

/* Privacy Section */
.privacy-section {
    padding: 60px 0;
}

.privacy-section h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.privacy-section .intro {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

.policy-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.policy-item:hover {
    transform: translateY(-5px);
}

.policy-item h3 {
    font-size: 24px;
    color: #3498db;
    margin-bottom: 15px;
}

.policy-item p {
    font-size: 16px;
    color: #666;
}

.policy-item ul {
    list-style: none;
    margin-top: 10px;
}

.policy-item ul li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.policy-item ul li:before {
    content: "•";
    color: #3498db;
    font-size: 20px;
    position: absolute;
    left: 0;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav {
        margin-top: 15px;
    }

    header nav a {
        margin: 0 10px;
    }

    .privacy-section h2 {
        font-size: 28px;
    }

    .policy-item h3 {
        font-size: 20px;
    }

    .policy-item p, .policy-item ul li {
        font-size: 14px;
    }
}