/* ÖNERİ 1: Gradient geçişli - En estetik */
/* Üstteki çizgi - Ana renk */
.slogan-container::after {
   content: '' !important;
   position: absolute !important;
   bottom: 0 !important;
   left: 0 !important;
   width: 100% !important;
   height: 2px !important;
   background: linear-gradient(90deg, #535D7B 0%, #7A85A3 100%) !important;
   z-index: 999 !important;
   display: block !important;
}

/* Alttaki çizgi - Daha açık ton */
.footer .bottom::before {
   content: '' !important;
   position: absolute !important;
   top: 0 !important;
   left: 50% !important;
   transform: translateX(-50%) !important;
   width: 80% !important;
   height: 1px !important;
   background-color: #9BA5C7 !important;
   z-index: 999 !important;
}

/* ÖNERİ 2: Klasik yaklaşım */
/*
.slogan-container::after {
   background-color: #535D7B !important;
   height: 2px !important;
}

.footer .bottom::before {
   background-color: #8A94B8 !important;
   height: 1px !important;
}
*/

/* ÖNERİ 3: Kontrast vurgulu */
/*
.slogan-container::after {
   background-color: #535D7B !important;
   height: 3px !important;
}

.footer .bottom::before {
   background-color: #B8C1D9 !important;
   height: 1px !important;
}
*/

/* ÖNERİ 4: Minimalist ton-sur-ton */
/*
.slogan-container::after {
   background-color: #535D7B !important;
   height: 1px !important;
}

.footer .bottom::before {
   background-color: #A3AECA !important;
   height: 1px !important;
}
*/