/* --- 1. CORE VARIABLES --- */
:root {
    --primary: #1388c9;
    --secondary: #00b8b6;
    --text-main: #333333;
    --text-light: #666666;
    --border-color: #e5e5e5;
    --bg-body: #ffffff;
    --bg-gray: #f9f9f9;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    font-size: 14px;
    line-height: 1.6;
}

a { text-decoration: none; color: var(--text-main); transition: 0.3s; }
a:hover { color: var(--primary); }
ul { padding-left: 0; list-style: none; }

/* --- 2. HEADER --- */
.sp-header {
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* --- 3. PAGE TITLE --- */
.sp-page-title {
    background: var(--bg-gray);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}
.breadcrumb { margin: 0; padding: 0; font-size: 12px; background: transparent; }
.breadcrumb-item + .breadcrumb-item::before { content: "/"; }
.breadcrumb-item.active { color: var(--primary); }

/* Forms & Validation Styling */
.form-label { font-size: 13px; font-weight: 600; color: #555; margin-bottom: 5px; }
.form-control { border-radius: 2px; font-size: 13px; padding: 8px 12px; border-color: #ddd; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 0.2rem rgba(19, 136, 201, 0.15); }

/* Input Group Validation Fix */
.input-group.has-validation { position: relative; }
.invalid-feedback { font-size: 11px; margin-top: 3px; }

.input-group-text { background: #f9f9f9; border-color: #ddd; color: #777; }

.btn-submit {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 2px;
    width: 100%;
    transition: 0.2s;
}
.btn-submit:hover { background: #009f9d; color: #fff; }
.btn-link-custom { color: var(--primary); font-size: 13px; text-decoration: none; cursor: pointer; }
.btn-link-custom:hover { text-decoration: underline; }

/* --- 5. INFO CONTENT --- */
.info-box { padding-left: 20px; }
.info-title {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.info-text { font-size: 14px; color: #555; margin-bottom: 20px; text-align: justify; }
.info-card {
    background: #f9f9f9;
    border-left: 4px solid var(--primary);
    padding: 15px;
    margin-bottom: 15px;
}
.info-card h5 { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--text-main); }
.info-card p { margin: 0; font-size: 13px; color: #666; }
.contact-icon { color: var(--secondary); margin-right: 10px; width: 20px; text-align: center; }

/* --- 6. FOOTER --- */
#sp-footer {
    background: #f5f5f5;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #ddd;
    font-size: 13px;
    color: #777;
}
.footer-logo { max-height: 40px; margin-bottom: 15px; }

@media (max-width: 991px) {
    .info-box { padding-left: 0; margin-top: 40px; }
}