:root {
    --wbs-primary: #0FB5B3;
    --wbs-secondary: #0B8F8E;
    --wbs-accent: #C9D924;
    --wbs-soft: #EAF9F8;
    --wbs-text: #0F2E2E;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--wbs-text);
    background: #f7fbfb;
}

.brand-logo {
    width: 56px;
    height: auto;
}

.brand-title {
    font-weight: 800;
    line-height: 1.1;
    color: var(--wbs-primary);
}

.brand-subtitle {
    font-size: 0.8rem;
}

.navbar .nav-link {
    font-weight: 600;
    color: #5a646b;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--wbs-secondary);
}

.hero-section {
    background: linear-gradient(135deg, rgba(15, 181, 179, 0.12), rgba(201, 217, 36, 0.14));
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--wbs-soft);
    color: var(--wbs-secondary);
    font-weight: 700;
    font-size: 0.85rem;
}

.hero-card,
.info-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.05);
}

.info-card {
    padding: 1.5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border: 1px solid #e8eeee;
    border-radius: 1rem;
    background: #fff;
}

.service-item:hover {
    border-color: var(--wbs-primary);
}

.service-arrow {
    color: var(--wbs-secondary);
    font-weight: 700;
}

.btn-wbs-primary {
    background: var(--wbs-primary);
    border-color: var(--wbs-primary);
    color: #fff;
    border-radius: 999px;
}

.btn-wbs-primary:hover,
.btn-wbs-primary:focus {
    background: var(--wbs-secondary);
    border-color: var(--wbs-secondary);
    color: #fff;
}

.section-title {
    font-weight: 800;
}

.icon-circle {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--wbs-soft);
    color: var(--wbs-secondary);
    font-weight: 800;
}

.news-card,
.sidebar-link {
    transition: all 0.2s ease;
}

.news-card:hover,
.sidebar-link:hover {
    transform: translateY(-2px);
}

.link-wbs {
    color: var(--wbs-secondary);
}

.page-header {
    border-bottom: 1px solid #edf2f2;
}

.content-area {
    line-height: 1.8;
}

.content-area p:last-child {
    margin-bottom: 0;
}

.badge-status {
    background: var(--wbs-soft);
    color: var(--wbs-secondary);
    font-size: 0.85rem;
}

.timeline {
    position: relative;
    padding-left: 1.25rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0.35rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #d4ecec;
}

.timeline-item {
    position: relative;
    padding-left: 1.25rem;
    padding-bottom: 1.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--wbs-primary);
    position: absolute;
    left: -0.02rem;
    top: 0.35rem;
    box-shadow: 0 0 0 4px #eef9f8;
}

.timeline-content {
    background: #fff;
    border: 1px solid #edf2f2;
    border-radius: 1rem;
    padding: 1rem;
}

.site-footer {
    background: #fff;
    border-top: 1px solid #edf2f2;
}

.footer-links a {
    color: #5a646b;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--wbs-secondary);
}

.accordion-button:not(.collapsed) {
    background: var(--wbs-soft);
    color: var(--wbs-secondary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #dceeed;
}

.form-control,
.form-select {
    padding: 0.8rem 1rem;
    border-color: #dfe7e7;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--wbs-primary);
    box-shadow: 0 0 0 0.2rem rgba(15, 181, 179, 0.15);
}

.py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

@media (max-width: 991.98px) {
    .brand-logo {
        width: 48px;
    }
}
