/* Base Reset and Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9fb;
    color: #333;
    line-height: 1.6;
}

/* Container & Row Helpers */
.container {
    max-width: 1140px;
    margin: auto;
    padding: 0 15px;
}

.row {
    margin-top: 40px;
}

/* Header Section */
.page-header {
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    color: white;
    text-align: center;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-header .container {
    padding: 60px 15px;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 0.6s ease-out;
}

.breadcrumb {
    list-style: none;
    display: inline-flex;
    justify-content: center;
    font-size: 0.95rem;
    color: #f3f4f6;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    margin: 0 8px;
    color: #cbd5e1;
}

.breadcrumb-item a {
    color: #e0e7ff;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-item.active {
    color: #facc15;
}

/* Policy Section */
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}

.policy h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1f2937;
    border-left: 4px solid #3b82f6;
    padding-left: 14px;
    margin-bottom: 25px;
}

.policy p {
    background-color: white;
    margin-bottom: 20px;
    padding: 18px 20px;
    border-left: 3px solid #93c5fd;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease;
}

.policy p:hover {
    background-color: #f1f5f9;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .policy h3 {
        font-size: 1.3rem;
    }

    .policy p {
        font-size: 0.95rem;
    }
}
