:root {
    --primary-color: #096c6c;
    --primary-color-hover: #e9f2f2;
    --primary-light: #e9efff;
}

/* HEADER */
.blog-header {
    background: #0b6b6b;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color) !important;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: var(--primary-color) !important;
    background-color: var(--primary-color-hover) !important;
}

.nav-link {
    color: black;
    font-weight: 500;
}

.nav-link:focus,
.nav-link:hover {
    color: #00af50 !important;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    background: url("{{ asset('assets/img/header/6.jpg') }}") no-repeat center
        center/cover;
}

.tablecontent {
    margin-left: 16px;
    font-weight: bold;
}

.accordion-body {
    font-size: 14px;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
    .mymargin {
        margin-top: 20px;
    }

    .tablecontent {
        margin-left: 18px;
        font-weight: bold;
    }

    .hero-text {
        font-size: 20px !important;
    }
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 600;
}

.sub-title {
    font-size: 1.3rem;
    font-weight: 400;
}

.welcome-box {
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 25px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.welcome-title {
    font-size: 25px;
    font-weight: 600;
    color: #0b6b6b;
    margin-bottom: 12px;
}

.welcome-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
}

.welcome-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    margin-bottom: 16px;
}

.welcome-subtext {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-box {
        padding: 22px;
    }

    .welcome-title {
        font-size: 18px;
    }
}
