:root {
    --primary-color: #0f7e18;
    --secondary-color: #64748b;
    --tercery-color: #0f7e18;
    --accent-color: #f8fafc;
    --border-color: #e2e8f0;
    --text-muted: #64748b;
    --hover: #470a68;
    --gradient: linear-gradient(90deg, rgba(71, 10, 104, 1) 15%, rgba(99, 15, 90, 1) 86%, rgba(223, 35, 29, 1) 100%);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-icon {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #fafafa;
}

.hero-image-section {
    margin-bottom: 0;
}

.hero-image-container {
    position: relative;
    min-height: 250px;
}

.hero-image-container img {
    object-fit: cover;
    height: 250px;
    width: 100%;
}

.content-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.content-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.title {
    font-weight: 700;
    color: #1e293b;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.title-section {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
}

.apply-btn {
    background: var(--gradient);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.apply-btn:hover {
    background: black;
    opacity: 0.9;
    color: white;
    transform: translateY(-1px);
}

.share-section {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.share-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.breadcrumb-text {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item a.active:hover {
    color: var(--secondary-color);
}

.nav-tabs {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    padding: 1rem 1.5rem;
    margin-right: 1rem;
    border-radius: 8px 8px 0 0;
    transition: all 0.2s ease;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: var(--primary-color);
    background-color: rgba(71, 10, 104, 0.05);
}

.nav-tabs .nav-link.active {
    background: white;
    border: none;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.tab-content {
    color: #475569;
    line-height: 1.7;
}

.tab-content h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--accent-color);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    margin-left: 0.5rem;
}

.social-icons a:hover {
    background: var(--hover);
    color: white;
    transform: translateY(-1px);
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.title-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.title-pl {
    top: 20% !important;
}

.icon-color {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.icon-success {
    color: var(--tercery-color);
    font-size: 1.25rem;
}



@media (min-width: 768px) {
    .title-pl {
        padding-left: 7rem !important;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .hero-image-full {
        height: 250px;
    }

    .share-section-inline {
        margin-top: 1rem;
    }

    .d-flex.flex-column.align-items-lg-end {
        align-items: stretch !important;
    }

    .apply-btn {
        width: 100% !important;
    }

    .inline-bullet-list {
        gap: 1rem;
        justify-content: flex-start;
    }

    .bullet-item {
        font-size: 0.9rem;
    }
}