:root {
    --primary-color: #0070f3;
    --accent-color: #38f9d7;
    --text-color: #1a1a1a;
    --bg-color: #f9f9f9;
    --card-bg: #ffffff;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --font-stack: "Segoe UI", Roboto, sans-serif;
}
.centered-container {
    text-align: center;
    margin-top: 40px;
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #ffffff, #e6f0ff);
    font-family: var(--font-stack);
    color: var(--text-color);
    line-height: 1.6;
}
.privacy-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    background: var(--bg-color);
}
.privacy-card {
    max-width: 800px;
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.logo {
    display: block;
    margin: 0 auto 1.5rem;
    width: 110px;
    height: 110px;
    margin-bottom: 1.4rem;
    background: radial-gradient(#ffffff, #dad9d9);
    border-radius: 24%;
    background-color: #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
h2 {
    margin-top: 2rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}
p {
    margin: 0.5rem 0;
}
a {
    color: var(--primary-color);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.back-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 112, 243, 0.4);
}
.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 112, 243, 0.5);
}
@media (max-width: 600px) {
    .privacy-card {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.2rem;
    }
}

.privacy-container {
    min-height: 100vh;
    background: #f9fafb;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 1rem 6rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1e293b;
}

.privacy-card {
    background: #ffffff;
    max-width: 700px;
    width: 100%;
    padding: 3rem 3.5rem 4rem;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.privacy-card .logo {
    display: block;
    margin: 0 auto 2rem auto;
    width: 90px;
    height: auto;
}

.privacy-card h1 {
    font-size: 2.6rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.privacy-card p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.3rem;
    color: #334155;
}

.privacy-card h2 {
    font-size: 1.6rem;
    color: #1e40af;
    margin-top: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-card strong {
    color: #2563eb;
    font-weight: 600;
}

.privacy-card a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.25s ease;
}

.privacy-card a:hover,
.privacy-card a:focus {
    color: #1e40af;
    text-decoration: underline;
}

/* Back Button */
.back-button {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(56, 249, 215, 0.4);
    transition: all 0.3s ease;
    user-select: none;
}

.back-button:hover,
.back-button:focus {
    background: linear-gradient(135deg, #38f9d7, #43e97b);
    box-shadow: 0 12px 30px rgba(56, 249, 215, 0.7);
    outline: none;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-card {
        padding: 2rem 1.5rem 3rem;
    }

    .privacy-card h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .privacy-card h2 {
        font-size: 1.3rem;
    }

    .privacy-card p {
        font-size: 1rem;
    }

    .back-button {
        width: 100%;
        padding: 0.75rem 0;
    }
}

