.airflow-logo {
    width: 24px; /* Set the width of the logo */
    height: auto; /* Maintain the aspect ratio */
    vertical-align: middle; /* Align the logo with the text */
    margin-left: 5px; /* Add some spacing between the text and the logo */
}

.data-pipeline-image {
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 30px; /* Add spacing below the image */
    border-radius: 10px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

/* Data pipelines section layout */
.pipeline-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.pipeline-step-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 24px 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    border-top: 3px solid #145392;
}

.pipeline-step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #145392;
    margin-bottom: 10px;
}

.pipeline-step-card p {
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.7;
    font-size: 0.98rem;
}

.pipeline-step-list {
    padding-left: 18px;
    margin: 0;
}

.pipeline-step-list li {
    color: #212529;
    font-size: 0.96rem;
    margin-bottom: 4px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .pipeline-step-card {
        padding: 20px 18px 18px;
    }

    .pipeline-step-title {
        font-size: 1.15rem;
    }
}
