/* ======================= RESET & BASE ======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f6f8;
    color: #333;
    line-height: 1.8;
}

/* ======================= HEADER ======================= */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

header .logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffc107;
    animation: spin 10s linear infinite;
}

header .logo-circle img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background: #0d6efd;
    color: #fff;
}

/* ======================= PRIVACY SECTION ======================= */
.privacy-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

.privacy-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg,#0d6efd,#ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ======================= CARDS ======================= */
.card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #0d6efd;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.card.active {
    opacity: 1;
    transform: translateY(0);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0d6efd;
}

.card p,
.card ul {
    font-size: 1rem;
    color: #555;
}

.card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.card li {
    margin-bottom: 8px;
}

/* ======================= BUTTONS ======================= */
button {
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.3s, background 0.3s;
}

button:hover {
    transform: scale(1.05);
    background: #ffc107;
    color: #fff;
}

/* ======================= FOOTER ======================= */
.site-footer {
    background: #212529;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1 1 220px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #ffc107;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #0d6efd;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffc107;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 0.9rem;
}

/* ======================= ANIMATIONS ======================= */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* ======================= RESPONSIVE ======================= */
@media (max-width: 992px) {
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        width: 220px;
        background: #fff;
        display: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        margin: 15px 0;
    }
}
