.header-overlay {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(29, 78, 216, 0.6));
}

.content-section {
    animation: fadeInUp 0.8s ease-out;
}

.policy-section {
    border-left: 4px solid #2563eb;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.policy-list {
    list-style-type: none;
    padding-left: 0;
}

.policy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.policy-list li::before {
    content: "▸";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.warning-box, .highlight-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.05));
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
}

.btn-blue {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-blue::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.btn-blue:hover::before {
    width: 300px;
    height: 300px;
}

.btn-blue:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}