/*
Theme Name: Vaulex Finance Custom
Author: Vaulex Group Ltd
Description: Blank-canvas theme specifically designed to host the Vaulex Flexible Financing portal and legal documents.
Version: 1.1
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    line-height: 1.7;
}

/* Specific styling for standard WordPress pages (Terms / Privacy) */
.page-template-default, .post-template-default {
    background-color: #081226; /* Dark background to match header */
    padding-top: 100px;
    padding-bottom: 100px;
}

.page-template-default .entry-content, 
.post-template-default .entry-content {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 80px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid #e2e8f0;
}

.entry-content h1 {
    color: #0B1B3D;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.entry-content h2 {
    color: #0B1B3D;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.entry-content p {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.entry-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.entry-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #475569;
}

.entry-content li::before {
    content: "•";
    color: #00A8C6;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.entry-content a {
    color: #00A8C6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.entry-content a:hover {
    color: #0B1B3D;
}

.entry-content em {
    color: #94a3b8;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 40px;
    font-style: normal;
}

@media (max-width: 768px) {
    .page-template-default .entry-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    .entry-content h1 { font-size: 2rem; }
}