/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

header {
    background-color: #28a745; /* Dark Green */
    color: white;
    text-align: center;
    padding: 50px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.privacy-content {
    text-align: left;
    line-height: 1.8;
    font-size: 18px;
    color: #333;
}

.privacy-content h2 {
    color: #28a745;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #28a745;
}

.privacy-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 16px;
}

ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

ul li strong {
    font-weight: 600;
}

footer {
    background-color: #28a745;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 20px;
    }

    .privacy-content {
        font-size: 16px;
    }
}

/* Smooth Scroll on Anchors */
a {
    color: #28a745;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #19692c;
}
