﻿/* --- GLOBAL THEME --- */
body {
    background-color: #e0eafc;
    background-image: linear-gradient(160deg, #e0eafc 0%, #cfdef3 100%);
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hide Default Footer */
footer {
    display: none !important;
}

/* --- LAYOUT CONTAINER --- */
.policy-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* --- GLASS PANEL (Matches your Index.cshtml style) --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    padding: 50px;
    overflow: hidden;
    position: relative;
}

/* --- HEADER SECTION --- */
.policy-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    padding-bottom: 20px;
}

    .policy-header h1 {
        font-weight: 600;
        color: #2d3436;
        margin-bottom: 5px;
        font-size: 2.2rem;
    }

/* --- CONTENT TYPOGRAPHY --- */
h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a5568;
    margin-top: 35px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    h2 i {
        color: #a29bfe;
    }
/* Icon color */

p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* --- STYLED LISTS --- */
ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

/* --- BUTTONS --- */
.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* --- FOOTER INSIDE CARD --- */
.policy-footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}
