.section-title {
    font-size: 2.5rem;
    font-weight: 600; 
    text-align: center;
    text-transform: uppercase;
    color: var(--accent-color); 
    margin-bottom: 25px;
    padding-top: 50px; 
}


.section-makine-genel { padding: 100px 0; background-color: var(--secondary-bg); }
.makine-intro { text-align: center; max-width: 900px; margin: 0 auto 70px auto; font-size: 1.2em; font-weight: 300; }


.makine-showcase { display: flex; gap: 40px; align-items: flex-start; margin-bottom: 70px; }

.showcase-visuals {
    flex: 1.5; 
    position: relative;
    min-height: 500px; 
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}


.showcase-item {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; 
    transition: opacity 1.5s ease-in-out; 
}
.showcase-item.active { opacity: 1; }
.showcase-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.showcase-caption { position: absolute; bottom: 0; width: 100%; background-color: rgba(0, 0, 0, 0.7); color: var(--text-color-light); padding: 15px; font-weight: 600; font-size: 1.1em; text-align: center; }

.showcase-text { flex: 1; padding: 20px 0; }
.showcase-text h3 { color: var(--accent-color); font-size: 2rem; margin-bottom: 20px; border-bottom: 2px solid var(--accent-color); padding-bottom: 10px; }

.makine-list { list-style: none; padding-left: 0; font-size: 1em; }
.makine-list li { padding: 8px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.1); }
.makine-list li .icon { color: var(--accent-color); margin-right: 10px; font-weight: bold; font-style: normal; }

.makine-cta { text-align: center; }

/* Responsive Düzenleme */
@media (max-width: 992px) {
    .makine-showcase { flex-direction: column; }
    .showcase-visuals { flex: auto; width: 100%; min-height: 300px; margin-bottom: 20px; }
    .showcase-text { flex: auto; width: 100%; }
    .showcase-text h3 { font-size: 1.5rem; }
}
