﻿
a {
    text-decoration: none;
    color: inherit;
}

/* ===== Container ===== */
.privacy-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.privacy-header {
    text-align: center;
    margin-bottom: 20px;
    padding-top:25px;
}

    .privacy-header h1 {
        font-size: 1.5rem;
        font-weight: 800;
        background: linear-gradient(90deg, #6c63ff, #4a47d5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 15px;
    }

    .privacy-header p {
        font-size: 16px;
        color: #555;
    }

/* ===== Cards ===== */
.privacy-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .privacy-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

.privacy-card-icon {
    font-size: 40px;
    color: #6c63ff;
    margin-left: 20px;
}

.privacy-card-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.privacy-card-content p {
    color: #555;
    font-size: 15px;
    text-align:justify;
}

/* ===== Footer ===== */
.privacy-footer {
    text-align: center;
    margin-top: 40px;
}

/* ===== Button ===== */
.btn-gradient {
    display: inline-block;
    background: linear-gradient(90deg, #6c63ff, #4a47d5);
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
}

    .btn-gradient:hover {
        background: linear-gradient(90deg, #4a47d5, #6c63ff);
        transform: translateY(-2px);
    }

/* ===== Responsive ===== */
@media (max-width:768px) {
    .privacy-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .privacy-card-icon {
        margin: 0 0 15px 0;
    }
}
