
.section-content {
	padding: 110px 0 110px 0;
}

/* ==========================================================================
   WORKFLOW TIMELINE
   ========================================================================== */

.workflow-timeline {
    margin-top: 30px;
    padding-left: 5px;
}

.workflow-step-block {
    display: table;
    width: 100%;
    margin-bottom: 25px;
}

.step-meta {
    display: table-cell;
    vertical-align: top;
    width: 60px;
    position: relative;
}

.step-num {
    display: block;
    font-size: 24pt;
    font-weight: 800;
    line-height: 1;
    color: #ff6600; /* Hier deinen Agentur-Farbakzent rein */
}

.step-line {
    position: absolute;
    top: 38px;
    bottom: -15px;
    left: 18px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.15); /* Subtile vertikale Verbindungslinie */
}

.step-body {
    display: table-cell;
    vertical-align: top;
    padding-left: 20px;
    padding-bottom: 10px;
}

.step-body h4 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.step-body p {
    margin: 0;
    line-height: 1.45;
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */

.download-card {
    display: block;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    position: relative;
    box-sizing: border-box;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.download-card:hover {
    background: rgba(26, 10, 42, 0.8);
    border-color: #ff6600; /* Knalliges Agentur-Orange */
}

.download-card .flexbox-3-col-image {
    display: block;
    margin: 0 auto 20px auto;
    transition: transform 0.3s ease;
}

.download-card:hover .flexbox-3-col-image {
    transform: scale(1.08);
}

.download-card .flexbox-3-col-headline {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.download-card .flexbox-3col-text {
    font-size: 18px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    text-align: center;
}

/* Der stilisierte, kantige Button im Inneren der Karte */
.download-button-mock {
    display: block;
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    box-sizing: border-box;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.download-card:hover .download-button-mock {
    background: #ff6600;
    border-color: #ff6600;
    color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE LAYOUT
   ========================================================================== */

@media (max-width: 600px) {
    /* --- Workflow Anpassungen --- */
    .step-num {
        font-size: 20pt !important;
    }t-size: 20pt !important;
    }
    .step-body {
		padding-left: 0px;
    }
    .step-body h4 {
        font-size: 19px !important;
    }
    
    /* --- Download-Card Anpassungen --- */
    .download-card .flexbox-3-col-headline {
        font-size: 19px !important;
    }
    .download-card .flexbox-3col-text {
        font-size: 16px !important;
    }
    .download-button-mock {
        font-size: 15px !important;
        padding: 10px !important;
    }
}