/* HERO STYLE */
.page-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
}
.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 74, 124, 0.75);
}
.page-hero-content {
    position: relative;
    color: #fff;
}
.hero-title {
    font-size: 36px;
    font-weight: 700;
}
.hero-title span {
    color: #00c6ff;
}

/* LEGAL CONTENT DESIGN */
.legal-content {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.legal-content h3 {
    color: #0a4a7c;
    margin-top: 40px;
    font-weight: 700;
    border-left: 4px solid #1977CC;
    padding-left: 15px;
    font-size: 22px;
}

.legal-content p,
.legal-content li {
    color: #4a5568;
    line-height: 1.8;
    font-size: 15px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-dates {
    background: #f8fafc;
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: inline-block;
    border: 1px solid #e2e8f0;
}

.important-alert {
    background: #fff5f5;
    border-left: 5px solid #f56565;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.final-note {
    background: #f1f7ff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    font-style: italic;
    border: 1px dashed #1977CC;
}

.contact-box {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}
