/* === GLOBAL LINK STYLES === */
/* Tüm sayfalardaki metin içi linkler için genel stiller */
a {
    color: #252525;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Sadece içerik alanlarındaki linkler için sade ama net stiller */
.about-description a,
.content a,
.page-content a,
.text-content a,
.content-area a,
.main-content a,
.section-content a,
.description a,
.detail-box a,
.content-wrapper a {
    color: #f07b26 !important;
    text-decoration: underline !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
}

/* Hover efekti - sade ama net hareket ile */
.about-description a:hover,
.content a:hover,
.page-content a:hover,
.text-content a:hover,
.content-area a:hover,
.main-content a:hover,
.section-content a:hover,
.description a:hover,
.detail-box a:hover,
.content-wrapper a:hover {
    color: #bc570d !important;
    text-decoration: underline !important;
    background: none !important;
    border: none !important;
    transform: translateY(-2px) !important;
}

/* Visited linkler */
.about-description a:visited,
.content a:visited,
.page-content a:visited,
.text-content a:visited,
.content-area a:visited,
.main-content a:visited,
.section-content a:visited,
.description a:visited,
.detail-box a:visited,
.content-wrapper a:visited {
    color: #cc6622 !important;
}

/* Active linkler */
.about-description a:active,
.content a:active,
.page-content a:active,
.text-content a:active,
.content-area a:active,
.main-content a:active,
.section-content a:active,
.description a:active,
.detail-box a:active,
.content-wrapper a:active {
    color: #8a4009 !important;
}

/* === HEADING STYLES === */
.heading_container {
    margin-bottom: 45px;
}

.heading_container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #252525;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.heading_container h2 span {
    color: #f07b26;
}

.heading_container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f07b26, #bc570d);
    border-radius: 2px;
}

.heading_container.heading_center {
    text-align: center;
}

.heading_container.heading_center h2::after {
    left: 50%;
    transform: translateX(-50%);
}